1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

LibWeb: Add barebones implementation of DOMPoint and DOMPointReadOnly

This commit is contained in:
Andreas Kling 2022-07-12 20:06:50 +02:00
parent 5744211001
commit e883777a18
7 changed files with 131 additions and 0 deletions

View file

@ -0,0 +1,10 @@
interface DOMPointReadOnly {
constructor(optional double x = 0, optional double y = 0, optional double z = 0, optional double w = 0);
readonly attribute double x;
readonly attribute double y;
readonly attribute double z;
readonly attribute double w;
};