1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +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,12 @@
#import <Geometry/DOMPointReadOnly.idl>
interface DOMPoint : DOMPointReadOnly {
constructor(optional double x = 0, optional double y = 0, optional double z = 0, optional double w = 0);
attribute double x;
attribute double y;
attribute double z;
attribute double w;
};