| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 void scrollByLines(in [Optional=DefaultIsUndefined] long lines); | 89 void scrollByLines(in [Optional=DefaultIsUndefined] long lines); |
| 90 void scrollByPages(in [Optional=DefaultIsUndefined] long pages); | 90 void scrollByPages(in [Optional=DefaultIsUndefined] long pages); |
| 91 | 91 |
| 92 #if defined(ENABLE_ANIMATION_API) && ENABLE_ANIMATION_API | 92 #if defined(ENABLE_ANIMATION_API) && ENABLE_ANIMATION_API |
| 93 WebKitAnimationList webkitGetAnimations(); | 93 WebKitAnimationList webkitGetAnimations(); |
| 94 #endif | 94 #endif |
| 95 | 95 |
| 96 // HTML 5 | 96 // HTML 5 |
| 97 NodeList getElementsByClassName(in [Optional=DefaultIsUndefined] DOMStri
ng name); | 97 NodeList getElementsByClassName(in [Optional=DefaultIsUndefined] DOMStri
ng name); |
| 98 | 98 |
| 99 attribute [Reflect=class] DOMString className; |
| 100 readonly attribute DOMTokenList classList; |
| 101 |
| 99 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT | 102 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT |
| 100 readonly attribute DOMStringMap dataset; | 103 readonly attribute DOMStringMap dataset; |
| 101 #endif | 104 #endif |
| 102 | 105 |
| 103 // NodeSelector - Selector API | 106 // NodeSelector - Selector API |
| 104 Element querySelector(in DOMString selectors) | 107 Element querySelector(in DOMString selectors) |
| 105 raises(DOMException); | 108 raises(DOMException); |
| 106 NodeList querySelectorAll(in DOMString selectors) | 109 NodeList querySelectorAll(in DOMString selectors) |
| 107 raises(DOMException); | 110 raises(DOMException); |
| 108 | 111 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 133 const unsigned short ALLOW_KEYBOARD_INPUT = 1; | 136 const unsigned short ALLOW_KEYBOARD_INPUT = 1; |
| 134 [V8EnabledAtRuntime] void webkitRequestFullScreen(in [Optional=DefaultIs
Undefined] unsigned short flags); | 137 [V8EnabledAtRuntime] void webkitRequestFullScreen(in [Optional=DefaultIs
Undefined] unsigned short flags); |
| 135 | 138 |
| 136 // W3C version | 139 // W3C version |
| 137 [V8EnabledAtRuntime] void webkitRequestFullscreen(); | 140 [V8EnabledAtRuntime] void webkitRequestFullscreen(); |
| 138 #endif | 141 #endif |
| 139 | 142 |
| 140 [Conditional=POINTER_LOCK, V8EnabledAtRuntime=pointerLock] void webkitRe
questPointerLock(); | 143 [Conditional=POINTER_LOCK, V8EnabledAtRuntime=pointerLock] void webkitRe
questPointerLock(); |
| 141 | 144 |
| 142 // CSS Regions API | 145 // CSS Regions API |
| 143 readonly attribute DOMString webkitRegionOverflow; | 146 readonly attribute DOMString webkitRegionOverset; |
| 144 | 147 |
| 145 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT | 148 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT |
| 146 readonly attribute [Conditional=UNDO_MANAGER] UndoManager undoManager; | 149 readonly attribute [Conditional=UNDO_MANAGER] UndoManager undoManager; |
| 147 attribute [Conditional=UNDO_MANAGER, Reflect] boolean undoScope; | 150 attribute [Conditional=UNDO_MANAGER, Reflect] boolean undoScope; |
| 148 #endif | 151 #endif |
| 149 | 152 |
| 150 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C | 153 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C |
| 151 // Event handler DOM attributes | 154 // Event handler DOM attributes |
| 152 attribute [NotEnumerable] EventListener onabort; | 155 attribute [NotEnumerable] EventListener onabort; |
| 153 attribute [NotEnumerable] EventListener onblur; | 156 attribute [NotEnumerable] EventListener onblur; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev
entListener ontouchstart; | 219 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev
entListener ontouchstart; |
| 217 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev
entListener ontouchmove; | 220 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev
entListener ontouchmove; |
| 218 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev
entListener ontouchend; | 221 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev
entListener ontouchend; |
| 219 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev
entListener ontouchcancel; | 222 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev
entListener ontouchcancel; |
| 220 attribute [NotEnumerable, Conditional=FULLSCREEN_API] EventListener onwe
bkitfullscreenchange; | 223 attribute [NotEnumerable, Conditional=FULLSCREEN_API] EventListener onwe
bkitfullscreenchange; |
| 221 attribute [NotEnumerable, Conditional=FULLSCREEN_API] EventListener onwe
bkitfullscreenerror; | 224 attribute [NotEnumerable, Conditional=FULLSCREEN_API] EventListener onwe
bkitfullscreenerror; |
| 222 #endif | 225 #endif |
| 223 }; | 226 }; |
| 224 | 227 |
| 225 } | 228 } |
| OLD | NEW |