blob: 516f8bd97e5c97d7332a37ff0de490f4d3bcd5eb [file] [log] [blame]
// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
// (https://github.com/w3c/webref)
// Source: Visual Viewport API (https://wicg.github.io/visual-viewport/)
partial interface Window {
[SameObject, Replaceable] readonly attribute VisualViewport visualViewport;
};
[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;
readonly attribute FrozenArray<DOMRect> segments;
attribute EventHandler onresize;
attribute EventHandler onscroll;
};