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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 [NotEnumerable] attribute EventListener ondrop; | 196 [NotEnumerable] attribute EventListener ondrop; |
197 [NotEnumerable] attribute EventListener onerror; | 197 [NotEnumerable] attribute EventListener onerror; |
198 [NotEnumerable] attribute EventListener onfocus; | 198 [NotEnumerable] attribute EventListener onfocus; |
199 [NotEnumerable] attribute EventListener oninput; | 199 [NotEnumerable] attribute EventListener oninput; |
200 [NotEnumerable] attribute EventListener oninvalid; | 200 [NotEnumerable] attribute EventListener oninvalid; |
201 [NotEnumerable] attribute EventListener onkeydown; | 201 [NotEnumerable] attribute EventListener onkeydown; |
202 [NotEnumerable] attribute EventListener onkeypress; | 202 [NotEnumerable] attribute EventListener onkeypress; |
203 [NotEnumerable] attribute EventListener onkeyup; | 203 [NotEnumerable] attribute EventListener onkeyup; |
204 [NotEnumerable] attribute EventListener onload; | 204 [NotEnumerable] attribute EventListener onload; |
205 [NotEnumerable] attribute EventListener onmousedown; | 205 [NotEnumerable] attribute EventListener onmousedown; |
| 206 [NotEnumerable] attribute EventListener onmouseenter; |
| 207 [NotEnumerable] attribute EventListener onmouseleave; |
206 [NotEnumerable] attribute EventListener onmousemove; | 208 [NotEnumerable] attribute EventListener onmousemove; |
207 [NotEnumerable] attribute EventListener onmouseout; | 209 [NotEnumerable] attribute EventListener onmouseout; |
208 [NotEnumerable] attribute EventListener onmouseover; | 210 [NotEnumerable] attribute EventListener onmouseover; |
209 [NotEnumerable] attribute EventListener onmouseup; | 211 [NotEnumerable] attribute EventListener onmouseup; |
210 [NotEnumerable] attribute EventListener onmousewheel; | 212 [NotEnumerable] attribute EventListener onmousewheel; |
211 [NotEnumerable] attribute EventListener onreadystatechange; | 213 [NotEnumerable] attribute EventListener onreadystatechange; |
212 [NotEnumerable] attribute EventListener onscroll; | 214 [NotEnumerable] attribute EventListener onscroll; |
213 [NotEnumerable] attribute EventListener onselect; | 215 [NotEnumerable] attribute EventListener onselect; |
214 [NotEnumerable] attribute EventListener onsubmit; | 216 [NotEnumerable] attribute EventListener onsubmit; |
215 | 217 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 readonly attribute boolean webkitHidden; | 282 readonly attribute boolean webkitHidden; |
281 | 283 |
282 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi
le/tip/csp-specification.dev.html#script-interfaces | 284 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi
le/tip/csp-specification.dev.html#script-interfaces |
283 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib
ute SecurityPolicy securityPolicy; | 285 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib
ute SecurityPolicy securityPolicy; |
284 | 286 |
285 readonly attribute HTMLScriptElement currentScript; | 287 readonly attribute HTMLScriptElement currentScript; |
286 }; | 288 }; |
287 | 289 |
288 Document implements ParentNode; | 290 Document implements ParentNode; |
289 | 291 |
OLD | NEW |