| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 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     [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds, 
     MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Defaul
     t=Undefined] optional unsigned short flags); | 
| 129 | 129 | 
| 130     // W3C version | 130     // W3C version | 
| 131     [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds, 
     MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen(); | 131     [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=ForAllWorlds, 
     MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen(); | 
| 132 | 132 | 
| 133     void webkitRequestPointerLock(); | 133     void webkitRequestPointerLock(); | 
| 134 | 134 | 
| 135     // CSS Regions API |  | 
| 136     [RuntimeEnabled=CSSRegions, PerWorldBindings] readonly attribute DOMString w
     ebkitRegionOverset; |  | 
| 137     [RuntimeEnabled=CSSRegions] sequence<Range> webkitGetRegionFlowRanges(); |  | 
| 138 |  | 
| 139     // Event handler attributes | 135     // Event handler attributes | 
| 140     attribute EventHandler onbeforecopy; | 136     attribute EventHandler onbeforecopy; | 
| 141     attribute EventHandler onbeforecut; | 137     attribute EventHandler onbeforecut; | 
| 142     attribute EventHandler onbeforepaste; | 138     attribute EventHandler onbeforepaste; | 
| 143     attribute EventHandler oncopy; | 139     attribute EventHandler oncopy; | 
| 144     attribute EventHandler oncut; | 140     attribute EventHandler oncut; | 
| 145     attribute EventHandler onpaste; | 141     attribute EventHandler onpaste; | 
| 146     attribute EventHandler onsearch; | 142     attribute EventHandler onsearch; | 
| 147     attribute EventHandler onselectstart; | 143     attribute EventHandler onselectstart; | 
| 148     [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 144     [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 
| 149     [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 145     [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 
| 150     [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 146     [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 
| 151     [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 147     [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 
| 152     attribute EventHandler onwebkitfullscreenchange; | 148     attribute EventHandler onwebkitfullscreenchange; | 
| 153     attribute EventHandler onwebkitfullscreenerror; | 149     attribute EventHandler onwebkitfullscreenerror; | 
| 154     [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
     andler onwheel; | 150     [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
     andler onwheel; | 
| 155 }; | 151 }; | 
| 156 | 152 | 
| 157 Element implements ParentNode; | 153 Element implements ParentNode; | 
| 158 Element implements ChildNode; | 154 Element implements ChildNode; | 
| OLD | NEW | 
|---|