mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 08:18:41 +09:00
Issue #2135 - Bug 1430305: Implement ShadowRoot.fullscreenElement
This commit is contained in:
parent
3dfffeaeca
commit
e286eb8adb
10 changed files with 105 additions and 40 deletions
|
|
@ -238,10 +238,6 @@ partial interface Document {
|
|||
readonly attribute boolean fullscreenEnabled;
|
||||
[BinaryName="fullscreenEnabled"]
|
||||
readonly attribute boolean mozFullScreenEnabled;
|
||||
[LenientSetter, Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
||||
readonly attribute Element? fullscreenElement;
|
||||
[BinaryName="fullscreenElement"]
|
||||
readonly attribute Element? mozFullScreenElement;
|
||||
|
||||
[Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
||||
void exitFullscreen();
|
||||
|
|
|
|||
|
|
@ -23,6 +23,8 @@ interface DocumentOrShadowRoot {
|
|||
readonly attribute StyleSheetList styleSheets;
|
||||
|
||||
readonly attribute Element? pointerLockElement;
|
||||
// Not implemented yet: bug 1430305.
|
||||
// readonly attribute Element? fullscreenElement;
|
||||
[LenientSetter, Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
||||
readonly attribute Element? fullscreenElement;
|
||||
[BinaryName="fullscreenElement"]
|
||||
readonly attribute Element? mozFullScreenElement;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue