diff options
Diffstat (limited to 'dom/webidl')
-rw-r--r-- | dom/webidl/Document.webidl | 4 | ||||
-rw-r--r-- | dom/webidl/DocumentOrShadowRoot.webidl | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/dom/webidl/Document.webidl b/dom/webidl/Document.webidl index 46cb629feb..3bdd4e7962 100644 --- a/dom/webidl/Document.webidl +++ b/dom/webidl/Document.webidl @@ -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(); diff --git a/dom/webidl/DocumentOrShadowRoot.webidl b/dom/webidl/DocumentOrShadowRoot.webidl index 267f16f23b..eb4a4b666d 100644 --- a/dom/webidl/DocumentOrShadowRoot.webidl +++ b/dom/webidl/DocumentOrShadowRoot.webidl @@ -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; }; |