| 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 | 118 |
| 119 // Mozilla version | 119 // Mozilla version |
| 120 const unsigned short ALLOW_KEYBOARD_INPUT = 1; | 120 const unsigned short ALLOW_KEYBOARD_INPUT = 1; |
| 121 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds,
MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Defaul
t=Undefined] optional unsigned short flags); | 121 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds,
MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Defaul
t=Undefined] optional unsigned short flags); |
| 122 | 122 |
| 123 // W3C version | 123 // W3C version |
| 124 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds,
MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen(); | 124 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds,
MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen(); |
| 125 | 125 |
| 126 void webkitRequestPointerLock(); | 126 void webkitRequestPointerLock(); |
| 127 | 127 |
| 128 // CSS Regions API | |
| 129 [RuntimeEnabled=CSSRegions, PerWorldBindings] readonly attribute DOMString w
ebkitRegionOverset; | |
| 130 [RuntimeEnabled=CSSRegions] sequence<Range> webkitGetRegionFlowRanges(); | |
| 131 | |
| 132 // Event handler attributes | 128 // Event handler attributes |
| 133 attribute EventHandler onbeforecopy; | 129 attribute EventHandler onbeforecopy; |
| 134 attribute EventHandler onbeforecut; | 130 attribute EventHandler onbeforecut; |
| 135 attribute EventHandler onbeforepaste; | 131 attribute EventHandler onbeforepaste; |
| 136 attribute EventHandler oncopy; | 132 attribute EventHandler oncopy; |
| 137 attribute EventHandler oncut; | 133 attribute EventHandler oncut; |
| 138 attribute EventHandler onpaste; | 134 attribute EventHandler onpaste; |
| 139 attribute EventHandler onsearch; | 135 attribute EventHandler onsearch; |
| 140 attribute EventHandler onselectstart; | 136 attribute EventHandler onselectstart; |
| 141 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 137 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
| 142 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 138 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
| 143 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 139 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
| 144 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 140 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
| 145 attribute EventHandler onwebkitfullscreenchange; | 141 attribute EventHandler onwebkitfullscreenchange; |
| 146 attribute EventHandler onwebkitfullscreenerror; | 142 attribute EventHandler onwebkitfullscreenerror; |
| 147 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
andler onwheel; | 143 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
andler onwheel; |
| 148 }; | 144 }; |
| 149 | 145 |
| 150 Element implements ParentNode; | 146 Element implements ParentNode; |
| 151 Element implements ChildNode; | 147 Element implements ChildNode; |
| OLD | NEW |