mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
21 lines
524 B
Plaintext
21 lines
524 B
Plaintext
// https://drafts.csswg.org/cssom-view/#the-visualviewport-interface
|
|
[Exposed=Window]
|
|
interface VisualViewport : EventTarget {
|
|
|
|
readonly attribute double offsetLeft;
|
|
readonly attribute double offsetTop;
|
|
|
|
readonly attribute double pageLeft;
|
|
readonly attribute double pageTop;
|
|
|
|
readonly attribute double width;
|
|
readonly attribute double height;
|
|
|
|
readonly attribute double scale;
|
|
|
|
attribute EventHandler onresize;
|
|
attribute EventHandler onscroll;
|
|
attribute EventHandler onscrollend;
|
|
|
|
};
|