OLD | NEW |
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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 // To-be-deprecated prefixed Shadow DOM API | 118 // To-be-deprecated prefixed Shadow DOM API |
119 [ImplementedAs=createShadowRoot, RaisesException, MeasureAs=ShadowDOMPrefixe
dCreateShadowRoot] ShadowRoot webkitCreateShadowRoot(); | 119 [ImplementedAs=createShadowRoot, RaisesException, MeasureAs=ShadowDOMPrefixe
dCreateShadowRoot] ShadowRoot webkitCreateShadowRoot(); |
120 [ImplementedAs=shadowRoot, PerWorldBindings, MeasureAs=ShadowDOMPrefixedShad
owRoot] readonly attribute ShadowRoot webkitShadowRoot; | 120 [ImplementedAs=shadowRoot, PerWorldBindings, MeasureAs=ShadowDOMPrefixedShad
owRoot] readonly attribute ShadowRoot webkitShadowRoot; |
121 | 121 |
122 // CSSOM View Module API | 122 // CSSOM View Module API |
123 ClientRectList getClientRects(); | 123 ClientRectList getClientRects(); |
124 ClientRect getBoundingClientRect(); | 124 ClientRect getBoundingClientRect(); |
125 | 125 |
126 // Mozilla version | 126 // Mozilla version |
127 const unsigned short ALLOW_KEYBOARD_INPUT = 1; | 127 const unsigned short ALLOW_KEYBOARD_INPUT = 1; |
128 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds,
MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Defaul
t=Undefined] optional unsigned short flags); | 128 [PerWorldBindings, ActivityLogging=ForAllWorlds, MeasureAs=PrefixedElementRe
questFullScreen] void webkitRequestFullScreen([Default=Undefined] optional unsig
ned short flags); |
129 | 129 |
130 // W3C version | 130 // W3C version |
131 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds,
MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen(); | 131 [PerWorldBindings, ActivityLogging=ForAllWorlds, MeasureAs=PrefixedElementRe
questFullscreen] void webkitRequestFullscreen(); |
132 | 132 |
133 void webkitRequestPointerLock(); | 133 void webkitRequestPointerLock(); |
134 | 134 |
135 // Event handler attributes | 135 // Event handler attributes |
136 attribute EventHandler onbeforecopy; | 136 attribute EventHandler onbeforecopy; |
137 attribute EventHandler onbeforecut; | 137 attribute EventHandler onbeforecut; |
138 attribute EventHandler onbeforepaste; | 138 attribute EventHandler onbeforepaste; |
139 attribute EventHandler oncopy; | 139 attribute EventHandler oncopy; |
140 attribute EventHandler oncut; | 140 attribute EventHandler oncut; |
141 attribute EventHandler onpaste; | 141 attribute EventHandler onpaste; |
142 attribute EventHandler onsearch; | 142 attribute EventHandler onsearch; |
143 attribute EventHandler onselectstart; | 143 attribute EventHandler onselectstart; |
144 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 144 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
145 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 145 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
146 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 146 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
147 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 147 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
148 attribute EventHandler onwebkitfullscreenchange; | 148 attribute EventHandler onwebkitfullscreenchange; |
149 attribute EventHandler onwebkitfullscreenerror; | 149 attribute EventHandler onwebkitfullscreenerror; |
150 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
andler onwheel; | 150 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
andler onwheel; |
151 }; | 151 }; |
152 | 152 |
153 Element implements ParentNode; | 153 Element implements ParentNode; |
154 Element implements ChildNode; | 154 Element implements ChildNode; |
OLD | NEW |