| 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 readonly attribute DOMString referrer; | 88 readonly attribute DOMString referrer; |
| 89 // FIXME: cookie should not have [TreatNullAs=NullString]. | 89 // FIXME: cookie should not have [TreatNullAs=NullString]. |
| 90 [TreatNullAs=NullString, RaisesException] attribute DOMString cookie; | 90 [TreatNullAs=NullString, RaisesException] attribute DOMString cookie; |
| 91 readonly attribute DOMString lastModified; | 91 readonly attribute DOMString lastModified; |
| 92 readonly attribute DocumentReadyState readyState; | 92 readonly attribute DocumentReadyState readyState; |
| 93 | 93 |
| 94 // DOM tree accessors | 94 // DOM tree accessors |
| 95 // FIXME: title and dir should not have [TreatNullAs=NullString]. | 95 // FIXME: title and dir should not have [TreatNullAs=NullString]. |
| 96 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString title; | 96 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString title; |
| 97 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString dir; | 97 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString dir; |
| 98 [RaisesException=Setter, CustomElementCallbacks, PerWorldBindings, TypeCheck
ing=Interface, ExposeJSAccessors] attribute HTMLElement? body; | 98 [RaisesException=Setter, CustomElementCallbacks, PerWorldBindings, TypeCheck
ing=Interface] attribute HTMLElement? body; |
| 99 readonly attribute HTMLHeadElement? head; | 99 readonly attribute HTMLHeadElement? head; |
| 100 [SameObject] readonly attribute HTMLCollection images; | 100 [SameObject] readonly attribute HTMLCollection images; |
| 101 [SameObject] readonly attribute HTMLCollection embeds; | 101 [SameObject] readonly attribute HTMLCollection embeds; |
| 102 [SameObject, ImplementedAs=embeds] readonly attribute HTMLCollection plugins
; | 102 [SameObject, ImplementedAs=embeds] readonly attribute HTMLCollection plugins
; |
| 103 [SameObject] readonly attribute HTMLCollection links; | 103 [SameObject] readonly attribute HTMLCollection links; |
| 104 [SameObject] readonly attribute HTMLCollection forms; | 104 [SameObject] readonly attribute HTMLCollection forms; |
| 105 [SameObject] readonly attribute HTMLCollection scripts; | 105 [SameObject] readonly attribute HTMLCollection scripts; |
| 106 [PerWorldBindings] NodeList getElementsByName(DOMString elementName); | 106 [PerWorldBindings] NodeList getElementsByName(DOMString elementName); |
| 107 readonly attribute HTMLScriptElement? currentScript; | 107 readonly attribute HTMLScriptElement? currentScript; |
| 108 | 108 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 attribute EventHandler onsearch; | 217 attribute EventHandler onsearch; |
| 218 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa
ndler onsecuritypolicyviolation; | 218 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa
ndler onsecuritypolicyviolation; |
| 219 attribute EventHandler onselectionchange; | 219 attribute EventHandler onselectionchange; |
| 220 attribute EventHandler onselectstart; | 220 attribute EventHandler onselectstart; |
| 221 attribute EventHandler onwheel; | 221 attribute EventHandler onwheel; |
| 222 }; | 222 }; |
| 223 | 223 |
| 224 Document implements GlobalEventHandlers; | 224 Document implements GlobalEventHandlers; |
| 225 Document implements ParentNode; | 225 Document implements ParentNode; |
| 226 Document implements NonElementParentNode; | 226 Document implements NonElementParentNode; |
| OLD | NEW |