OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 [UsesView] CSSRuleList getMatchedCSSRules(in Element element, | 220 [UsesView] CSSRuleList getMatchedCSSRules(in Element element, |
221 in DOMString pseudoElement); | 221 in DOMString pseudoElement); |
222 [UsesView] CSSRuleList getMatchedCSSRules(in Element element, | 222 [UsesView] CSSRuleList getMatchedCSSRules(in Element element, |
223 in DOMString pseudoElement, | 223 in DOMString pseudoElement, |
224 in [Optional] boolean authorOn
ly); | 224 in [Optional] boolean authorOn
ly); |
225 #endif | 225 #endif |
226 // HTML 5 | 226 // HTML 5 |
227 NodeList getElementsByClassName(in DOMString tagname); | 227 NodeList getElementsByClassName(in DOMString tagname); |
228 | 228 |
229 // DocumentSelector - Selector API | 229 // DocumentSelector - Selector API |
230 [Custom] Element querySelector(in [ConvertUndefinedOrNullToNullString] D
OMString selectors) | 230 [Custom] Element querySelector(in [ConvertUndefinedOrNullToNullString] D
OMString selectors, in NSResolver resolver) |
231 raises(DOMException); | 231 raises(DOMException); |
232 [Custom] NodeList querySelectorAll(in [ConvertUndefinedOrNullToNullStrin
g] DOMString selectors) | 232 [Custom] NodeList querySelectorAll(in [ConvertUndefinedOrNullToNullStrin
g] DOMString selectors, in NSResolver resolver) |
233 raises(DOMException); | 233 raises(DOMException); |
234 }; | 234 }; |
235 | 235 |
236 } | 236 } |
OLD | NEW |