Skip to content

Commit

Permalink
Align with Web IDL change: [LenientSetter] → [LegacyLenientSetter]
Browse files Browse the repository at this point in the history
  • Loading branch information
domenic committed Apr 20, 2020
1 parent 7200301 commit 693db15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fullscreen.bs
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ partial interface Element {
};

partial interface Document {
[LenientSetter] readonly attribute boolean fullscreenEnabled;
[LenientSetter, Unscopable] readonly attribute boolean fullscreen; // historical
[LegacyLenientSetter] readonly attribute boolean fullscreenEnabled;
[LegacyLenientSetter, Unscopable] readonly attribute boolean fullscreen; // historical

Promise<void> exitFullscreen();

Expand All @@ -184,7 +184,7 @@ partial interface Document {
};

partial interface mixin DocumentOrShadowRoot {
[LenientSetter] readonly attribute Element? fullscreenElement;
[LegacyLenientSetter] readonly attribute Element? fullscreenElement;
};
</pre>
<!-- The event handler attributes are intentially not in a partial DocumentAndElementEventHandlers
Expand Down

0 comments on commit 693db15

Please sign in to comment.