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