-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathdocument-picture-in-picture.idl
35 lines (30 loc) · 1.16 KB
/
document-picture-in-picture.idl
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
35
// 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 disallowReturnToOpener = false;
boolean preferInitialWindowPlacement = false;
};
[Exposed=Window, SecureContext]
interface DocumentPictureInPictureEvent : Event {
constructor(DOMString type, DocumentPictureInPictureEventInit eventInitDict);
[SameObject] readonly attribute Window window;
};
dictionary DocumentPictureInPictureEventInit : EventInit {
required Window window;
};