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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 [NotEnumerable, PerWorldBindings] attribute EventListener ondrop; | 138 [NotEnumerable, PerWorldBindings] attribute EventListener ondrop; |
139 [NotEnumerable, PerWorldBindings] attribute EventListener onerror; | 139 [NotEnumerable, PerWorldBindings] attribute EventListener onerror; |
140 [NotEnumerable, PerWorldBindings] attribute EventListener onfocus; | 140 [NotEnumerable, PerWorldBindings] attribute EventListener onfocus; |
141 [NotEnumerable, PerWorldBindings] attribute EventListener oninput; | 141 [NotEnumerable, PerWorldBindings] attribute EventListener oninput; |
142 [NotEnumerable, PerWorldBindings] attribute EventListener oninvalid; | 142 [NotEnumerable, PerWorldBindings] attribute EventListener oninvalid; |
143 [NotEnumerable, PerWorldBindings] attribute EventListener onkeydown; | 143 [NotEnumerable, PerWorldBindings] attribute EventListener onkeydown; |
144 [NotEnumerable, PerWorldBindings] attribute EventListener onkeypress; | 144 [NotEnumerable, PerWorldBindings] attribute EventListener onkeypress; |
145 [NotEnumerable, PerWorldBindings] attribute EventListener onkeyup; | 145 [NotEnumerable, PerWorldBindings] attribute EventListener onkeyup; |
146 [NotEnumerable, PerWorldBindings] attribute EventListener onload; | 146 [NotEnumerable, PerWorldBindings] attribute EventListener onload; |
147 [NotEnumerable, PerWorldBindings] attribute EventListener onmousedown; | 147 [NotEnumerable, PerWorldBindings] attribute EventListener onmousedown; |
| 148 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseenter; |
| 149 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseleave; |
148 [NotEnumerable, PerWorldBindings] attribute EventListener onmousemove; | 150 [NotEnumerable, PerWorldBindings] attribute EventListener onmousemove; |
149 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseout; | 151 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseout; |
150 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseover; | 152 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseover; |
151 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseup; | 153 [NotEnumerable, PerWorldBindings] attribute EventListener onmouseup; |
152 [NotEnumerable, PerWorldBindings] attribute EventListener onmousewheel; | 154 [NotEnumerable, PerWorldBindings] attribute EventListener onmousewheel; |
153 [NotEnumerable, PerWorldBindings] attribute EventListener onscroll; | 155 [NotEnumerable, PerWorldBindings] attribute EventListener onscroll; |
154 [NotEnumerable, PerWorldBindings] attribute EventListener onselect; | 156 [NotEnumerable, PerWorldBindings] attribute EventListener onselect; |
155 [NotEnumerable, PerWorldBindings] attribute EventListener onsubmit; | 157 [NotEnumerable, PerWorldBindings] attribute EventListener onsubmit; |
156 | 158 |
157 // attribute [NotEnumerable] EventListener oncanplay; | 159 // attribute [NotEnumerable] EventListener oncanplay; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchmove; | 193 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchmove; |
192 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchend; | 194 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchend; |
193 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchcancel; | 195 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchcancel; |
194 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
change; | 196 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
change; |
195 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
error; | 197 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
error; |
196 }; | 198 }; |
197 | 199 |
198 Element implements ParentNode; | 200 Element implements ParentNode; |
199 Element implements ChildNode; | 201 Element implements ChildNode; |
200 | 202 |
OLD | NEW |