| 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 29 matching lines...) Expand all Loading... |
| 40 [RaisesException, CustomElementCallbacks, TypeChecking=Interface] Node adopt
Node(Node node); | 40 [RaisesException, CustomElementCallbacks, TypeChecking=Interface] Node adopt
Node(Node node); |
| 41 | 41 |
| 42 [RaisesException] Event createEvent(DOMString eventType); | 42 [RaisesException] Event createEvent(DOMString eventType); |
| 43 | 43 |
| 44 readonly attribute DOMString? baseURI; | 44 readonly attribute DOMString? baseURI; |
| 45 | 45 |
| 46 Range createRange(); | 46 Range createRange(); |
| 47 | 47 |
| 48 [ImplementedAs=executingWindow] readonly attribute Window defaultView; | 48 [ImplementedAs=executingWindow] readonly attribute Window defaultView; |
| 49 | 49 |
| 50 readonly attribute StyleSheetList styleSheets; | |
| 51 | |
| 52 readonly attribute DOMString contentType; | 50 readonly attribute DOMString contentType; |
| 53 | 51 |
| 54 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMStrin
g dir; | 52 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMStrin
g dir; |
| 55 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMStrin
g title; | 53 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMStrin
g title; |
| 56 readonly attribute DOMString referrer; | 54 readonly attribute DOMString referrer; |
| 57 readonly attribute DOMString URL; | 55 readonly attribute DOMString URL; |
| 58 | 56 |
| 59 [PutForwards=href] readonly attribute Location location; | 57 [PutForwards=href] readonly attribute Location location; |
| 60 | 58 |
| 61 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString readyStat
e; | 59 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString readyStat
e; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 92 [CustomElementCallbacks, PerWorldBindings, RaisesException] Element createEl
ement(DOMString localName, DOMString? typeExtension); | 90 [CustomElementCallbacks, PerWorldBindings, RaisesException] Element createEl
ement(DOMString localName, DOMString? typeExtension); |
| 93 | 91 |
| 94 // Page visibility API. | 92 // Page visibility API. |
| 95 readonly attribute DOMString visibilityState; | 93 readonly attribute DOMString visibilityState; |
| 96 readonly attribute boolean hidden; | 94 readonly attribute boolean hidden; |
| 97 | 95 |
| 98 readonly attribute HTMLScriptElement currentScript; | 96 readonly attribute HTMLScriptElement currentScript; |
| 99 }; | 97 }; |
| 100 | 98 |
| 101 Document implements ParentNode; | 99 Document implements ParentNode; |
| OLD | NEW |