mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
11 lines
276 B
Plaintext
11 lines
276 B
Plaintext
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;
|
|
|
|
};
|