| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 ClientRectList getClientRects(); | 116 ClientRectList getClientRects(); |
| 117 ClientRect getBoundingClientRect(); | 117 ClientRect getBoundingClientRect(); |
| 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 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void
webkitRequestFullScreen([Default=Undefined] optional unsigned short flags); | 121 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void
webkitRequestFullScreen([Default=Undefined] optional unsigned short flags); |
| 122 | 122 |
| 123 // W3C version | 123 // W3C version |
| 124 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullscreen] void
webkitRequestFullscreen(); | 124 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullscreen] void
webkitRequestFullscreen(); |
| 125 | 125 |
| 126 [MeasureAs=PrefixedElementRequestPointerLock] void webkitRequestPointerLock(
); | |
| 127 [MeasureAs=ElementRequestPointerLock] void requestPointerLock(); | 126 [MeasureAs=ElementRequestPointerLock] void requestPointerLock(); |
| 128 | 127 |
| 129 // Event handler attributes | 128 // Event handler attributes |
| 130 attribute EventHandler onbeforecopy; | 129 attribute EventHandler onbeforecopy; |
| 131 attribute EventHandler onbeforecut; | 130 attribute EventHandler onbeforecut; |
| 132 attribute EventHandler onbeforepaste; | 131 attribute EventHandler onbeforepaste; |
| 133 attribute EventHandler oncopy; | 132 attribute EventHandler oncopy; |
| 134 attribute EventHandler oncut; | 133 attribute EventHandler oncut; |
| 135 attribute EventHandler onpaste; | 134 attribute EventHandler onpaste; |
| 136 attribute EventHandler onsearch; | 135 attribute EventHandler onsearch; |
| 137 attribute EventHandler onselectstart; | 136 attribute EventHandler onselectstart; |
| 138 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 137 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
| 139 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 138 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
| 140 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 139 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
| 141 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 140 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
| 142 attribute EventHandler onwebkitfullscreenchange; | 141 attribute EventHandler onwebkitfullscreenchange; |
| 143 attribute EventHandler onwebkitfullscreenerror; | 142 attribute EventHandler onwebkitfullscreenerror; |
| 144 attribute EventHandler onwheel; | 143 attribute EventHandler onwheel; |
| 145 }; | 144 }; |
| 146 | 145 |
| 147 Element implements ParentNode; | 146 Element implements ParentNode; |
| 148 Element implements ChildNode; | 147 Element implements ChildNode; |
| OLD | NEW |