| 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 14 matching lines...) Expand all Loading... |
| 25 JSCustomPushEventHandlerScope, | 25 JSCustomPushEventHandlerScope, |
| 26 V8CustomToJSObject | 26 V8CustomToJSObject |
| 27 ] HTMLElement : Element { | 27 ] HTMLElement : Element { |
| 28 // iht.com relies on id returning the empty string when no id i
s present. | 28 // iht.com relies on id returning the empty string when no id i
s present. |
| 29 // Other browsers do this as well. So we don't convert null to
JS null. | 29 // Other browsers do this as well. So we don't convert null to
JS null. |
| 30 attribute [Reflect] DOMString id; | 30 attribute [Reflect] DOMString id; |
| 31 attribute [Reflect] DOMString title; | 31 attribute [Reflect] DOMString title; |
| 32 attribute [Reflect] DOMString lang; | 32 attribute [Reflect] DOMString lang; |
| 33 attribute boolean translate; | 33 attribute boolean translate; |
| 34 attribute [Reflect] DOMString dir; | 34 attribute [Reflect] DOMString dir; |
| 35 attribute [Reflect=class] DOMString className; | |
| 36 readonly attribute DOMTokenList classList; | |
| 37 | 35 |
| 38 attribute long tabIndex; | 36 attribute long tabIndex; |
| 39 attribute boolean draggable; | 37 attribute boolean draggable; |
| 40 attribute [Reflect] DOMString webkitdropzone; | 38 attribute [Reflect] DOMString webkitdropzone; |
| 41 attribute [Reflect] boolean hidden; | 39 attribute [Reflect] boolean hidden; |
| 42 attribute [Reflect] DOMString accessKey; | 40 attribute [Reflect] DOMString accessKey; |
| 43 | 41 |
| 44 // Extensions | 42 // Extensions |
| 45 attribute [TreatNullAs=NullString] DOMString innerHTML | 43 attribute [TreatNullAs=NullString] DOMString innerHTML |
| 46 setter raises(DOMException); | 44 setter raises(DOMException); |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 #endif | 88 #endif |
| 91 | 89 |
| 92 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C | 90 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C |
| 93 readonly attribute DOMString titleDisplayString; | 91 readonly attribute DOMString titleDisplayString; |
| 94 #endif | 92 #endif |
| 95 | 93 |
| 96 void click(); | 94 void click(); |
| 97 }; | 95 }; |
| 98 | 96 |
| 99 } | 97 } |
| OLD | NEW |