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:
parent
5744211001
commit
e883777a18
7 changed files with 131 additions and 0 deletions
10
Userland/Libraries/LibWeb/Geometry/DOMPointReadOnly.idl
Normal file
10
Userland/Libraries/LibWeb/Geometry/DOMPointReadOnly.idl
Normal 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;
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue