| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 107 |
| 108 // Moved down from HTMLDocument | 108 // Moved down from HTMLDocument |
| 109 | 109 |
| 110 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMStrin
g title; | 110 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMStrin
g title; |
| 111 readonly attribute DOMString referrer; | 111 readonly attribute DOMString referrer; |
| 112 [TreatNullAs=NullString, RaisesException=Setter] attribute DOMStrin
g domain; | 112 [TreatNullAs=NullString, RaisesException=Setter] attribute DOMStrin
g domain; |
| 113 readonly attribute DOMString URL; | 113 readonly attribute DOMString URL; |
| 114 | 114 |
| 115 [TreatNullAs=NullString, RaisesException] attribute DOMString cooki
e; | 115 [TreatNullAs=NullString, RaisesException] attribute DOMString cooki
e; |
| 116 | 116 |
| 117 [RaisesException=Setter, CustomElementCallbacks] attribute HTMLElem
ent body; | 117 [RaisesException=Setter, CustomElementCallbacks, ExposeJSAccessors]
attribute HTMLElement body; |
| 118 | 118 |
| 119 readonly attribute HTMLHeadElement head; | 119 readonly attribute HTMLHeadElement head; |
| 120 readonly attribute HTMLCollection images; | 120 readonly attribute HTMLCollection images; |
| 121 readonly attribute HTMLCollection applets; | 121 readonly attribute HTMLCollection applets; |
| 122 readonly attribute HTMLCollection links; | 122 readonly attribute HTMLCollection links; |
| 123 readonly attribute HTMLCollection forms; | 123 readonly attribute HTMLCollection forms; |
| 124 readonly attribute HTMLCollection anchors; | 124 readonly attribute HTMLCollection anchors; |
| 125 readonly attribute DOMString lastModified; | 125 readonly attribute DOMString lastModified; |
| 126 | 126 |
| 127 [PerWorldBindings] NodeList getElementsByName([Default=Undefined] optional D
OMString elementName); | 127 [PerWorldBindings] NodeList getElementsByName([Default=Undefined] optional D
OMString elementName); |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 [MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute
boolean webkitHidden; | 215 [MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute
boolean webkitHidden; |
| 216 | 216 |
| 217 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi
le/tip/csp-specification.dev.html#script-interfaces | 217 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi
le/tip/csp-specification.dev.html#script-interfaces |
| 218 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] readonly attribut
e SecurityPolicy securityPolicy; | 218 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] readonly attribut
e SecurityPolicy securityPolicy; |
| 219 | 219 |
| 220 readonly attribute HTMLScriptElement currentScript; | 220 readonly attribute HTMLScriptElement currentScript; |
| 221 }; | 221 }; |
| 222 | 222 |
| 223 Document implements GlobalEventHandlers; | 223 Document implements GlobalEventHandlers; |
| 224 Document implements ParentNode; | 224 Document implements ParentNode; |
| OLD | NEW |