OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. |
3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> | 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> |
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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 [NotEnumerable] attribute EventListener ondrop; | 186 [NotEnumerable] attribute EventListener ondrop; |
187 [NotEnumerable] attribute EventListener onerror; | 187 [NotEnumerable] attribute EventListener onerror; |
188 [NotEnumerable] attribute EventListener onfocus; | 188 [NotEnumerable] attribute EventListener onfocus; |
189 [NotEnumerable] attribute EventListener oninput; | 189 [NotEnumerable] attribute EventListener oninput; |
190 [NotEnumerable] attribute EventListener oninvalid; | 190 [NotEnumerable] attribute EventListener oninvalid; |
191 [NotEnumerable] attribute EventListener onkeydown; | 191 [NotEnumerable] attribute EventListener onkeydown; |
192 [NotEnumerable] attribute EventListener onkeypress; | 192 [NotEnumerable] attribute EventListener onkeypress; |
193 [NotEnumerable] attribute EventListener onkeyup; | 193 [NotEnumerable] attribute EventListener onkeyup; |
194 [NotEnumerable] attribute EventListener onload; | 194 [NotEnumerable] attribute EventListener onload; |
195 [NotEnumerable] attribute EventListener onmousedown; | 195 [NotEnumerable] attribute EventListener onmousedown; |
| 196 [NotEnumerable] attribute EventListener onmouseenter; |
| 197 [NotEnumerable] attribute EventListener onmouseleave; |
196 [NotEnumerable] attribute EventListener onmousemove; | 198 [NotEnumerable] attribute EventListener onmousemove; |
197 [NotEnumerable] attribute EventListener onmouseout; | 199 [NotEnumerable] attribute EventListener onmouseout; |
198 [NotEnumerable] attribute EventListener onmouseover; | 200 [NotEnumerable] attribute EventListener onmouseover; |
199 [NotEnumerable] attribute EventListener onmouseup; | 201 [NotEnumerable] attribute EventListener onmouseup; |
200 [NotEnumerable] attribute EventListener onmousewheel; | 202 [NotEnumerable] attribute EventListener onmousewheel; |
201 [NotEnumerable] attribute EventListener onreadystatechange; | 203 [NotEnumerable] attribute EventListener onreadystatechange; |
202 [NotEnumerable] attribute EventListener onscroll; | 204 [NotEnumerable] attribute EventListener onscroll; |
203 [NotEnumerable] attribute EventListener onselect; | 205 [NotEnumerable] attribute EventListener onselect; |
204 [NotEnumerable] attribute EventListener onsubmit; | 206 [NotEnumerable] attribute EventListener onsubmit; |
205 | 207 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 readonly attribute boolean webkitHidden; | 272 readonly attribute boolean webkitHidden; |
271 | 273 |
272 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi
le/tip/csp-specification.dev.html#script-interfaces | 274 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi
le/tip/csp-specification.dev.html#script-interfaces |
273 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib
ute SecurityPolicy securityPolicy; | 275 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib
ute SecurityPolicy securityPolicy; |
274 | 276 |
275 readonly attribute HTMLScriptElement currentScript; | 277 readonly attribute HTMLScriptElement currentScript; |
276 }; | 278 }; |
277 | 279 |
278 Document implements ParentNode; | 280 Document implements ParentNode; |
279 | 281 |
OLD | NEW |