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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 | 94 |
95 [PerWorldBindings] readonly attribute DOMStringMap dataset; | 95 [PerWorldBindings] readonly attribute DOMStringMap dataset; |
96 | 96 |
97 // NodeSelector - Selector API | 97 // NodeSelector - Selector API |
98 [RaisesException] Element querySelector(DOMString selectors); | 98 [RaisesException] Element querySelector(DOMString selectors); |
99 [RaisesException] NodeList querySelectorAll(DOMString selectors); | 99 [RaisesException] NodeList querySelectorAll(DOMString selectors); |
100 | 100 |
101 // WebKit extension, pending specification. | 101 // WebKit extension, pending specification. |
102 [RaisesException] boolean webkitMatchesSelector([Default=Undefined] optional
DOMString selectors); | 102 [RaisesException] boolean webkitMatchesSelector([Default=Undefined] optional
DOMString selectors); |
103 | 103 |
104 // ElementTraversal API | 104 // ParentNode interface API |
| 105 [PerWorldBindings] readonly attribute HTMLCollection children; |
105 [PerWorldBindings] readonly attribute Element firstElementChild; | 106 [PerWorldBindings] readonly attribute Element firstElementChild; |
106 [PerWorldBindings] readonly attribute Element lastElementChild; | 107 [PerWorldBindings] readonly attribute Element lastElementChild; |
107 [PerWorldBindings] readonly attribute unsigned long childElementCount; | 108 [PerWorldBindings] readonly attribute unsigned long childElementCount; |
108 | 109 |
109 // ShadowAware API | 110 // ShadowAware API |
110 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings] attribute DOMString
webkitPseudo; | 111 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings] attribute DOMString
webkitPseudo; |
111 [ImplementedAs=createShadowRoot, RaisesException] ShadowRoot webkitCreateSha
dowRoot(); | 112 [ImplementedAs=createShadowRoot, RaisesException] ShadowRoot webkitCreateSha
dowRoot(); |
112 [ImplementedAs=shadowRoot, PerWorldBindings] readonly attribute ShadowRoot w
ebkitShadowRoot; | 113 [ImplementedAs=shadowRoot, PerWorldBindings] readonly attribute ShadowRoot w
ebkitShadowRoot; |
113 [ImplementedAs=insertionParentForBinding, PerWorldBindings] readonly attribu
te Node webkitInsertionParent; | 114 [ImplementedAs=insertionParentForBinding, PerWorldBindings] readonly attribu
te Node webkitInsertionParent; |
114 | 115 |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 [NotEnumerable, PerWorldBindings] attribute EventListener onsearch; | 201 [NotEnumerable, PerWorldBindings] attribute EventListener onsearch; |
201 [NotEnumerable, PerWorldBindings] attribute EventListener onselectstart; | 202 [NotEnumerable, PerWorldBindings] attribute EventListener onselectstart; |
202 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchstart; | 203 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchstart; |
203 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchmove; | 204 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchmove; |
204 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchend; | 205 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchend; |
205 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchcancel; | 206 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis
tener ontouchcancel; |
206 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
change; | 207 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
change; |
207 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
error; | 208 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen
error; |
208 }; | 209 }; |
209 | 210 |
OLD | NEW |