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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 // TODO(yukishiino): Support inheritance of attributes defined on instance. | 88 // TODO(yukishiino): Support inheritance of attributes defined on instance. |
89 [PutForwards=href, Unforgeable] readonly attribute Location? location; | 89 [PutForwards=href, Unforgeable] readonly attribute Location? location; |
90 [RaisesException=Setter] attribute DOMString domain; | 90 [RaisesException=Setter] attribute DOMString domain; |
91 readonly attribute DOMString referrer; | 91 readonly attribute DOMString referrer; |
92 // FIXME: cookie should not have [TreatNullAs=NullString]. | 92 // FIXME: cookie should not have [TreatNullAs=NullString]. |
93 [TreatNullAs=NullString, RaisesException] attribute DOMString cookie; | 93 [TreatNullAs=NullString, RaisesException] attribute DOMString cookie; |
94 readonly attribute DOMString lastModified; | 94 readonly attribute DOMString lastModified; |
95 readonly attribute DocumentReadyState readyState; | 95 readonly attribute DocumentReadyState readyState; |
96 | 96 |
97 // DOM tree accessors | 97 // DOM tree accessors |
98 // FIXME: title and dir should not have [TreatNullAs=NullString]. | 98 [CustomElementCallbacks] attribute DOMString title; |
99 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString title; | 99 // FIXME: dir should not have [TreatNullAs=NullString]. |
100 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString dir; | 100 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString dir; |
101 [RaisesException=Setter, CustomElementCallbacks, PerWorldBindings, TypeCheck
ing=Interface] attribute HTMLElement? body; | 101 [RaisesException=Setter, CustomElementCallbacks, PerWorldBindings, TypeCheck
ing=Interface] attribute HTMLElement? body; |
102 readonly attribute HTMLHeadElement? head; | 102 readonly attribute HTMLHeadElement? head; |
103 [SameObject] readonly attribute HTMLCollection images; | 103 [SameObject] readonly attribute HTMLCollection images; |
104 [SameObject] readonly attribute HTMLCollection embeds; | 104 [SameObject] readonly attribute HTMLCollection embeds; |
105 [SameObject, ImplementedAs=embeds] readonly attribute HTMLCollection plugins
; | 105 [SameObject, ImplementedAs=embeds] readonly attribute HTMLCollection plugins
; |
106 [SameObject] readonly attribute HTMLCollection links; | 106 [SameObject] readonly attribute HTMLCollection links; |
107 [SameObject] readonly attribute HTMLCollection forms; | 107 [SameObject] readonly attribute HTMLCollection forms; |
108 [SameObject] readonly attribute HTMLCollection scripts; | 108 [SameObject] readonly attribute HTMLCollection scripts; |
109 [PerWorldBindings] NodeList getElementsByName(DOMString elementName); | 109 [PerWorldBindings] NodeList getElementsByName(DOMString elementName); |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 attribute EventHandler onsearch; | 222 attribute EventHandler onsearch; |
223 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa
ndler onsecuritypolicyviolation; | 223 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa
ndler onsecuritypolicyviolation; |
224 attribute EventHandler onselectionchange; | 224 attribute EventHandler onselectionchange; |
225 attribute EventHandler onselectstart; | 225 attribute EventHandler onselectstart; |
226 attribute EventHandler onwheel; | 226 attribute EventHandler onwheel; |
227 }; | 227 }; |
228 | 228 |
229 Document implements GlobalEventHandlers; | 229 Document implements GlobalEventHandlers; |
230 Document implements ParentNode; | 230 Document implements ParentNode; |
231 Document implements NonElementParentNode; | 231 Document implements NonElementParentNode; |
OLD | NEW |