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 10 matching lines...) Expand all Loading... |
21 module core { | 21 module core { |
22 | 22 |
23 interface [ | 23 interface [ |
24 GenerateConstructor, | 24 GenerateConstructor, |
25 GenerateToJS, | 25 GenerateToJS, |
26 GenerateNativeConverter, | 26 GenerateNativeConverter, |
27 CustomMarkFunction, | 27 CustomMarkFunction, |
28 InlineGetOwnPropertySlot, | 28 InlineGetOwnPropertySlot, |
29 InterfaceUUID=48BB95FC-2D08-4c54-BE65-7558736A4CAE, | 29 InterfaceUUID=48BB95FC-2D08-4c54-BE65-7558736A4CAE, |
30 ImplementationUUID=FF5CBE81-F817-429c-A6C2-0CCCD2328062 | 30 ImplementationUUID=FF5CBE81-F817-429c-A6C2-0CCCD2328062 |
31 ] Document : Node { | 31 ] Document : EventTargetNode { |
32 | 32 |
33 // DOM Level 1 Core | 33 // DOM Level 1 Core |
34 readonly attribute DocumentType doctype; | 34 readonly attribute DocumentType doctype; |
35 readonly attribute [V8Custom] DOMImplementation implementation; | 35 readonly attribute [V8Custom] DOMImplementation implementation; |
36 readonly attribute Element documentElement; | 36 readonly attribute Element documentElement; |
37 | 37 |
38 [ReturnsNew] Element createElement(in [ConvertNullToNullString] DOMStrin
g tagName) | 38 [ReturnsNew] Element createElement(in [ConvertNullToNullString] DOMStrin
g tagName) |
39 raises (DOMException); | 39 raises (DOMException); |
40 DocumentFragment createDocumentFragment(); | 40 DocumentFragment createDocumentFragment(); |
41 [ReturnsNew] Text createTextNode(in DOMString data); | 41 [ReturnsNew] Text createTextNode(in DOMString data); |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 NodeList querySelectorAll(in [ConvertUndefinedOrNullToNullString] DOMStr
ing selectors) | 243 NodeList querySelectorAll(in [ConvertUndefinedOrNullToNullString] DOMStr
ing selectors) |
244 raises(DOMException); | 244 raises(DOMException); |
245 | 245 |
246 #if ENABLE_WML | 246 #if ENABLE_WML |
247 // Only used from within WML layout tests, WML doesn't have JS support a
t all. | 247 // Only used from within WML layout tests, WML doesn't have JS support a
t all. |
248 void resetWMLPageState(); | 248 void resetWMLPageState(); |
249 #endif | 249 #endif |
250 }; | 250 }; |
251 | 251 |
252 } | 252 } |
OLD | NEW |