LibWeb: Add {,de}serialization steps for CryptoKey

This commit is contained in:
Kenneth Myhra 2024-03-10 20:48:00 +01:00 committed by Andreas Kling
commit 52f056503d
Notes: sideshowbarker 2024-07-17 01:28:15 +09:00
5 changed files with 97 additions and 1 deletions

View file

@ -20,3 +20,8 @@ instanceOf DOMRectReadOnly: true
DOMRectReadOnly: {"x":10,"y":20,"width":30,"height":40,"top":20,"right":40,"bottom":60,"left":10}
instanceOf DOMRect: true
DOMRect: {"x":10,"y":20,"width":30,"height":40,"top":20,"right":40,"bottom":60,"left":10}
instanceOf CryptoKey: true
CryptoKey.type: "secret"
CryptoKey.extractable: false
CryptoKey.algorithm: {"name":"PBKDF2"}
CryptoKey.usages: ["deriveKey","deriveBits"]