| 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, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 [ | 21 [ |
| 22 JSGenerateToNativeObject, | 22 JSGenerateToNativeObject, |
| 23 JSInlineGetOwnPropertySlot, | 23 JSInlineGetOwnPropertySlot, |
| 24 V8CustomToJSObject | 24 V8CustomToJSObject, |
| 25 V8SkipVTableValidation |
| 25 ] interface Element : Node { | 26 ] interface Element : Node { |
| 26 | 27 |
| 27 // DOM Level 1 Core | 28 // DOM Level 1 Core |
| 28 | 29 |
| 29 [TreatReturnedNullStringAs=Null] readonly attribute DOMString tagName; | 30 [TreatReturnedNullStringAs=Null] readonly attribute DOMString tagName; |
| 30 | 31 |
| 31 [TreatReturnedNullStringAs=Null] DOMString getAttribute(in [Optional=Default
IsUndefined] DOMString name); | 32 [TreatReturnedNullStringAs=Null] DOMString getAttribute(in [Optional=Default
IsUndefined] DOMString name); |
| 32 [ObjCLegacyUnnamedParameters] void setAttribute(in [Optional=DefaultIsUndefi
ned] DOMString name, | 33 [ObjCLegacyUnnamedParameters] void setAttribute(in [Optional=DefaultIsUndefi
ned] DOMString name, |
| 33 in [Optional=DefaultIsUndefined] DOMString
value) | 34 in [Optional=DefaultIsUndefined] DOMString
value) |
| 34 raises(DOMException); | 35 raises(DOMException); |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 [NotEnumerable] attribute EventListener onselectstart; | 221 [NotEnumerable] attribute EventListener onselectstart; |
| 221 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] attribute EventL
istener ontouchstart; | 222 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] attribute EventL
istener ontouchstart; |
| 222 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] attribute EventL
istener ontouchmove; | 223 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] attribute EventL
istener ontouchmove; |
| 223 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] attribute EventL
istener ontouchend; | 224 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] attribute EventL
istener ontouchend; |
| 224 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] attribute EventL
istener ontouchcancel; | 225 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] attribute EventL
istener ontouchcancel; |
| 225 [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkit
fullscreenchange; | 226 [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkit
fullscreenchange; |
| 226 [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkit
fullscreenerror; | 227 [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkit
fullscreenerror; |
| 227 #endif | 228 #endif |
| 228 }; | 229 }; |
| 229 | 230 |
| OLD | NEW |