blob: 742f65e6f06b309521bdc8ebbe213bd6605c9eb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
// (https://github.com/w3c/webref)
// Source: Document Picture-in-Picture Specification (https://wicg.github.io/document-picture-in-picture/)
[Exposed=Window]
partial interface Window {
[SameObject, SecureContext] readonly attribute DocumentPictureInPicture
documentPictureInPicture;
};
[Exposed=Window, SecureContext]
interface DocumentPictureInPicture : EventTarget {
[NewObject] Promise<Window> requestWindow(
optional DocumentPictureInPictureOptions options = {});
readonly attribute Window window;
attribute EventHandler onenter;
};
dictionary DocumentPictureInPictureOptions {
[EnforceRange] unsigned long long width = 0;
[EnforceRange] unsigned long long height = 0;
boolean copyStyleSheets = false;
};
[Exposed=Window]
interface DocumentPictureInPictureEvent : Event {
constructor(DOMString type, DocumentPictureInPictureEventInit eventInitDict);
[SameObject] readonly attribute Window window;
};
dictionary DocumentPictureInPictureEventInit : EventInit {
required Window window;
};
|