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 13 matching lines...) Expand all Loading... |
24 | 24 |
25 [ | 25 [ |
26 SpecialWrapFor=HTMLDocument|XMLDocument | 26 SpecialWrapFor=HTMLDocument|XMLDocument |
27 ] interface Document : Node { | 27 ] interface Document : Node { |
28 | 28 |
29 // DOM Level 1 Core | 29 // DOM Level 1 Core |
30 readonly attribute DocumentType doctype; | 30 readonly attribute DocumentType doctype; |
31 readonly attribute DOMImplementation implementation; | 31 readonly attribute DOMImplementation implementation; |
32 readonly attribute Element documentElement; | 32 readonly attribute Element documentElement; |
33 | 33 |
34 [CustomElementCallbacks, PerWorldBindings, LogActivity, RaisesException] Ele
ment createElement(DOMString tagName); | 34 [CustomElementCallbacks, PerWorldBindings, RaisesException] Element createEl
ement(DOMString tagName); |
35 DocumentFragment createDocumentFragment(); | 35 DocumentFragment createDocumentFragment(); |
36 Text createTextNode(DOMString data); | 36 Text createTextNode(DOMString data); |
37 Comment createComment(DOMString data); | 37 Comment createComment(DOMString data); |
38 [RaisesException, MeasureAs=DocumentCreateCDATASection] CDATASection createC
DATASection([Default=Undefined] optional DOMString data); // Removed from DOM4. | 38 [RaisesException, MeasureAs=DocumentCreateCDATASection] CDATASection createC
DATASection([Default=Undefined] optional DOMString data); // Removed from DOM4. |
39 [RaisesException] ProcessingInstruction createProcessingInstruction(DOMStrin
g target, DOMString data); | 39 [RaisesException] ProcessingInstruction createProcessingInstruction(DOMStrin
g target, DOMString data); |
40 [RaisesException, MeasureAs=DocumentCreateAttribute] Attr createAttribute([D
efault=Undefined] optional DOMString name); // Removed from DOM4. | 40 [RaisesException, MeasureAs=DocumentCreateAttribute] Attr createAttribute([D
efault=Undefined] optional DOMString name); // Removed from DOM4. |
41 HTMLCollection getElementsByTagName(DOMString localName); | 41 HTMLCollection getElementsByTagName(DOMString localName); |
42 | 42 |
43 // Introduced in DOM Level 2: | 43 // Introduced in DOM Level 2: |
44 | 44 |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 [Default=Undefined] optional double
pageY, | 198 [Default=Undefined] optional double
pageY, |
199 [Default=Undefined] optional double
screenX, | 199 [Default=Undefined] optional double
screenX, |
200 [Default=Undefined] optional double
screenY, | 200 [Default=Undefined] optional double
screenY, |
201 [Default=Undefined] optional double
webkitRadiusX, | 201 [Default=Undefined] optional double
webkitRadiusX, |
202 [Default=Undefined] optional double
webkitRadiusY, | 202 [Default=Undefined] optional double
webkitRadiusY, |
203 [Default=Undefined] optional float
webkitRotationAngle, | 203 [Default=Undefined] optional float
webkitRotationAngle, |
204 [Default=Undefined] optional float
webkitForce); | 204 [Default=Undefined] optional float
webkitForce); |
205 [RuntimeEnabled=Touch] TouchList createTouchList(Touch... touches); | 205 [RuntimeEnabled=Touch] TouchList createTouchList(Touch... touches); |
206 | 206 |
207 [CallWith=ScriptState, CustomElementCallbacks, RaisesException, MeasureAs=Do
cumentRegisterElement] CustomElementConstructor registerElement(DOMString name,
optional Dictionary options); | 207 [CallWith=ScriptState, CustomElementCallbacks, RaisesException, MeasureAs=Do
cumentRegisterElement] CustomElementConstructor registerElement(DOMString name,
optional Dictionary options); |
208 [CustomElementCallbacks, PerWorldBindings, LogActivity, RaisesException] Ele
ment createElement(DOMString localName, [TreatNullAs=NullString] DOMString typeE
xtension); | 208 [CustomElementCallbacks, PerWorldBindings, RaisesException] Element createEl
ement(DOMString localName, [TreatNullAs=NullString] DOMString typeExtension); |
209 [CustomElementCallbacks, LogActivity, RaisesException] Element createElement
NS([TreatNullAs=NullString] DOMString namespaceURI, DOMString qualifiedName, | 209 [CustomElementCallbacks, RaisesException] Element createElementNS([TreatNull
As=NullString] DOMString namespaceURI, DOMString qualifiedName, |
210 [TreatNullAs=NullString] DOMString typeExtension); | 210 [TreatNullAs=NullString] DOMString typeExtension); |
211 | 211 |
212 // Page visibility API. | 212 // Page visibility API. |
213 readonly attribute DOMString visibilityState; | 213 readonly attribute DOMString visibilityState; |
214 readonly attribute boolean hidden; | 214 readonly attribute boolean hidden; |
215 | 215 |
216 // Deprecated prefixed page visibility API. | 216 // Deprecated prefixed page visibility API. |
217 // TODO(davidben): This is a property so attaching a deprecation warning res
ults in false positives when outputting | 217 // TODO(davidben): This is a property so attaching a deprecation warning res
ults in false positives when outputting |
218 // document in the console. It's possible http://crbug.com/43394 will resolv
e this. | 218 // document in the console. It's possible http://crbug.com/43394 will resolv
e this. |
219 [MeasureAs=PrefixedPageVisibility, ImplementedAs=visibilityState] readonly a
ttribute DOMString webkitVisibilityState; | 219 [MeasureAs=PrefixedPageVisibility, ImplementedAs=visibilityState] readonly a
ttribute DOMString webkitVisibilityState; |
220 [MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute
boolean webkitHidden; | 220 [MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute
boolean webkitHidden; |
221 | 221 |
222 readonly attribute HTMLScriptElement currentScript; | 222 readonly attribute HTMLScriptElement currentScript; |
223 }; | 223 }; |
224 | 224 |
225 Document implements GlobalEventHandlers; | 225 Document implements GlobalEventHandlers; |
226 Document implements ParentNode; | 226 Document implements ParentNode; |
OLD | NEW |