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

Side by Side Diff: Source/core/dom/Element.idl

Issue 36573003: Add UseCounters for Element.webkitRequestFullscreen/webkitRequestFullScreen (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/page/UseCounter.h » ('j') | Source/core/page/UseCounter.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 [Reflect=pseudo, TreatNullAs=NullString, ImplementedAs=pseudo, PerWorldBindi ngs, MeasureAs=ShadowDOMPrefixedPseudo] attribute DOMString webkitPseudo; 115 [Reflect=pseudo, TreatNullAs=NullString, ImplementedAs=pseudo, PerWorldBindi ngs, MeasureAs=ShadowDOMPrefixedPseudo] attribute DOMString webkitPseudo;
116 [ImplementedAs=createShadowRoot, RaisesException, MeasureAs=ShadowDOMPrefixe dCreateShadowRoot] ShadowRoot webkitCreateShadowRoot(); 116 [ImplementedAs=createShadowRoot, RaisesException, MeasureAs=ShadowDOMPrefixe dCreateShadowRoot] ShadowRoot webkitCreateShadowRoot();
117 [ImplementedAs=shadowRoot, PerWorldBindings, MeasureAs=ShadowDOMPrefixedShad owRoot] readonly attribute ShadowRoot webkitShadowRoot; 117 [ImplementedAs=shadowRoot, PerWorldBindings, MeasureAs=ShadowDOMPrefixedShad owRoot] readonly attribute ShadowRoot webkitShadowRoot;
118 118
119 // CSSOM View Module API 119 // CSSOM View Module API
120 ClientRectList getClientRects(); 120 ClientRectList getClientRects();
121 ClientRect getBoundingClientRect(); 121 ClientRect getBoundingClientRect();
122 122
123 // Mozilla version 123 // Mozilla version
124 const unsigned short ALLOW_KEYBOARD_INPUT = 1; 124 const unsigned short ALLOW_KEYBOARD_INPUT = 1;
125 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=AccessForAllWo rlds] void webkitRequestFullScreen([Default=Undefined] optional unsigned short f lags); 125 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=AccessForAllWo rlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([ Default=Undefined] optional unsigned short flags);
126 126
127 // W3C version 127 // W3C version
128 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=AccessForAllWo rlds] void webkitRequestFullscreen(); 128 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=AccessForAllWo rlds, MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen() ;
129 129
130 void webkitRequestPointerLock(); 130 void webkitRequestPointerLock();
131 131
132 // CSS Regions API 132 // CSS Regions API
133 [RuntimeEnabled=CSSRegions, PerWorldBindings] readonly attribute DOMString w ebkitRegionOverset; 133 [RuntimeEnabled=CSSRegions, PerWorldBindings] readonly attribute DOMString w ebkitRegionOverset;
134 [RuntimeEnabled=CSSRegions] sequence<Range> webkitGetRegionFlowRanges(); 134 [RuntimeEnabled=CSSRegions] sequence<Range> webkitGetRegionFlowRanges();
135 135
136 // Event handler attributes 136 // Event handler attributes
137 attribute EventHandler onbeforecopy; 137 attribute EventHandler onbeforecopy;
138 attribute EventHandler onbeforecut; 138 attribute EventHandler onbeforecut;
139 attribute EventHandler onbeforepaste; 139 attribute EventHandler onbeforepaste;
140 attribute EventHandler oncopy; 140 attribute EventHandler oncopy;
141 attribute EventHandler oncut; 141 attribute EventHandler oncut;
142 attribute EventHandler onpaste; 142 attribute EventHandler onpaste;
143 attribute EventHandler onsearch; 143 attribute EventHandler onsearch;
144 attribute EventHandler onselectstart; 144 attribute EventHandler onselectstart;
145 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; 145 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
146 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 146 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
147 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 147 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
148 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 148 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
149 attribute EventHandler onwebkitfullscreenchange; 149 attribute EventHandler onwebkitfullscreenchange;
150 attribute EventHandler onwebkitfullscreenerror; 150 attribute EventHandler onwebkitfullscreenerror;
151 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onwheel; 151 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onwheel;
152 }; 152 };
153 153
154 Element implements ParentNode; 154 Element implements ParentNode;
155 Element implements ChildNode; 155 Element implements ChildNode;
OLDNEW
« no previous file with comments | « no previous file | Source/core/page/UseCounter.h » ('j') | Source/core/page/UseCounter.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698