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 17 matching lines...) Expand all Loading... |
28 readonly attribute Element documentElement; | 28 readonly attribute Element documentElement; |
29 | 29 |
30 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola
tedWorlds, RaisesException] Element createElement([TreatNullAs=NullString,Defaul
t=Undefined] optional DOMString tagName); | 30 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola
tedWorlds, RaisesException] Element createElement([TreatNullAs=NullString,Defaul
t=Undefined] optional DOMString tagName); |
31 DocumentFragment createDocumentFragment(); | 31 DocumentFragment createDocumentFragment(); |
32 [PerWorldBindings] Text createTextNode([Default=Undefined] optional DOMStrin
g data); | 32 [PerWorldBindings] Text createTextNode([Default=Undefined] optional DOMStrin
g data); |
33 Comment createComment([Default=Undefined] optional DOMString data); | 33 Comment createComment([Default=Undefined] optional DOMString data); |
34 [RaisesException] CDATASection createCDATASection([Default=Undefined] option
al DOMString data); | 34 [RaisesException] CDATASection createCDATASection([Default=Undefined] option
al DOMString data); |
35 [RaisesException] ProcessingInstruction createProcessingInstruction([Default
=Undefined] optional DOMString target, | 35 [RaisesException] ProcessingInstruction createProcessingInstruction([Default
=Undefined] optional DOMString target, |
36
[Default=Undefined] optional DOMString data); | 36
[Default=Undefined] optional DOMString data); |
37 [RaisesException] Attr createAttribute([Default=Undefined] optional DOMStrin
g name); | 37 [RaisesException] Attr createAttribute([Default=Undefined] optional DOMStrin
g name); |
38 [RaisesException] EntityReference createEntityReference([Default=Undefined]
optional DOMString name); | |
39 [PerWorldBindings] NodeList getElementsByTagName([Default=Undefine
d] optional DOMString tagname); | 38 [PerWorldBindings] NodeList getElementsByTagName([Default=Undefine
d] optional DOMString tagname); |
40 | 39 |
41 // Introduced in DOM Level 2: | 40 // Introduced in DOM Level 2: |
42 | 41 |
43 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola
tedWorlds, RaisesException] Node importNode([Default=Undefined] optional Node im
portedNode, | 42 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola
tedWorlds, RaisesException] Node importNode([Default=Undefined] optional Node im
portedNode, |
44 optional boolean deep); | 43 optional boolean deep); |
45 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola
tedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString,Defa
ult=Undefined] optional DOMString namespaceURI, | 44 [DeliverCustomElementCallbacks, PerWorldBindings, ActivityLog=AccessForIsola
tedWorlds, RaisesException] Element createElementNS([TreatNullAs=NullString,Defa
ult=Undefined] optional DOMString namespaceURI, |
46 [TreatNullAs=NullString,Default=Undefined] optional
DOMString qualifiedName); | 45 [TreatNullAs=NullString,Default=Undefined] optional
DOMString qualifiedName); |
47 [RaisesException] Attr createAttributeNS([TreatNullAs=NullString,Default=Und
efined] optional DOMString namespaceURI, | 46 [RaisesException] Attr createAttributeNS([TreatNullAs=NullString,Default=Und
efined] optional DOMString namespaceURI, |
48 [Treat
NullAs=NullString,Default=Undefined] optional DOMString qualifiedName); | 47 [Treat
NullAs=NullString,Default=Undefined] optional DOMString qualifiedName); |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 | 283 |
285 // Page visibility API. | 284 // Page visibility API. |
286 readonly attribute DOMString webkitVisibilityState; | 285 readonly attribute DOMString webkitVisibilityState; |
287 readonly attribute boolean webkitHidden; | 286 readonly attribute boolean webkitHidden; |
288 | 287 |
289 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi
le/tip/csp-specification.dev.html#script-interfaces | 288 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi
le/tip/csp-specification.dev.html#script-interfaces |
290 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib
ute DOMSecurityPolicy securityPolicy; | 289 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib
ute DOMSecurityPolicy securityPolicy; |
291 | 290 |
292 }; | 291 }; |
293 | 292 |
OLD | NEW |