Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(725)

Unified Diff: Source/core/dom/DocumentFullscreen.idl

Issue 130943004: Regularize extended attributes on partial interfaces (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/DocumentFontFaceSet.idl ('k') | Source/core/events/NavigatorEvents.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DocumentFullscreen.idl
diff --git a/Source/core/dom/DocumentFullscreen.idl b/Source/core/dom/DocumentFullscreen.idl
index 561ad8018b4d4b5f0fe387fdb835fb0db8f317c5..917d4814c90c08bfcca0ed34509bffb43a27f4e5 100644
--- a/Source/core/dom/DocumentFullscreen.idl
+++ b/Source/core/dom/DocumentFullscreen.idl
@@ -18,15 +18,18 @@
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
-partial interface Document {
+
+[
+ RuntimeEnabled=Fullscreen,
+] partial interface Document {
// Mozilla version
- [RuntimeEnabled=Fullscreen] readonly attribute boolean webkitIsFullScreen;
- [RuntimeEnabled=Fullscreen] readonly attribute boolean webkitFullScreenKeyboardInputAllowed;
- [RuntimeEnabled=Fullscreen] readonly attribute Element webkitCurrentFullScreenElement;
- [RuntimeEnabled=Fullscreen] void webkitCancelFullScreen();
+ readonly attribute boolean webkitIsFullScreen;
+ readonly attribute boolean webkitFullScreenKeyboardInputAllowed;
+ readonly attribute Element webkitCurrentFullScreenElement;
+ void webkitCancelFullScreen();
// W3C version
- [RuntimeEnabled=Fullscreen] readonly attribute boolean webkitFullscreenEnabled;
- [RuntimeEnabled=Fullscreen] readonly attribute Element webkitFullscreenElement;
- [RuntimeEnabled=Fullscreen] void webkitExitFullscreen();
+ readonly attribute boolean webkitFullscreenEnabled;
+ readonly attribute Element webkitFullscreenElement;
+ void webkitExitFullscreen();
};
« no previous file with comments | « Source/core/css/DocumentFontFaceSet.idl ('k') | Source/core/events/NavigatorEvents.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698