LibWeb: Add {,de}serialization steps for DOMRectReadonly

This commit is contained in:
Kenneth Myhra 2024-03-10 09:02:54 +01:00 committed by Andreas Kling
commit 9f5fa4f4a0
Notes: sideshowbarker 2024-07-17 00:57:24 +09:00
5 changed files with 63 additions and 1 deletions

View file

@ -16,3 +16,5 @@ instanceOf DOMPointReadOnly: true
DOMPointReadOnly: {"x":10,"y":20,"z":30,"w":40}
instanceOf DOMPoint: true
DOMPoint: {"x":10,"y":20,"z":30,"w":40}
instanceOf DOMRectReadOnly: true
DOMRectReadOnly: {"x":10,"y":20,"width":30,"height":40,"top":20,"right":40,"bottom":60,"left":10}