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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 readonly attribute HTMLCollection scripts; | 128 readonly attribute HTMLCollection scripts; |
129 readonly attribute HTMLCollection anchors; | 129 readonly attribute HTMLCollection anchors; |
130 readonly attribute DOMString lastModified; | 130 readonly attribute DOMString lastModified; |
131 | 131 |
132 [PerWorldBindings] NodeList getElementsByName([Default=Undefined] optional D
OMString elementName); | 132 [PerWorldBindings] NodeList getElementsByName([Default=Undefined] optional D
OMString elementName); |
133 | 133 |
134 [PerWorldBindings, LogActivity, PutForwards=href] readonly attribute Locatio
n location; | 134 [PerWorldBindings, LogActivity, PutForwards=href] readonly attribute Locatio
n location; |
135 | 135 |
136 // IE extensions | 136 // IE extensions |
137 [MeasureAs=DocumentCharset, TreatReturnedNullStringAs=Undefined, TreatNullAs
=NullString] attribute DOMString charset; | 137 [MeasureAs=DocumentCharset, TreatReturnedNullStringAs=Undefined, TreatNullAs
=NullString] attribute DOMString charset; |
138 [MeasureAs=DocumentCharset, TreatReturnedNullStringAs=Undefined] readonly at
tribute DOMString defaultCharset; | 138 [MeasureAs=DocumentDefaultCharset, TreatReturnedNullStringAs=Undefined] read
only attribute DOMString defaultCharset; |
139 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString readyStat
e; | 139 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString readyStat
e; |
140 | 140 |
141 Element elementFromPoint([Default=Undefined] optional long x, | 141 Element elementFromPoint([Default=Undefined] optional long x, |
142 [Default=Undefined] optional long y); | 142 [Default=Undefined] optional long y); |
143 [MeasureAs=DocumentCaretRangeFromPoint] | 143 [MeasureAs=DocumentCaretRangeFromPoint] |
144 Range caretRangeFromPoint([Default=Undefined] optional long x, | 144 Range caretRangeFromPoint([Default=Undefined] optional long x, |
145 [Default=Undefined] optional long y); | 145 [Default=Undefined] optional long y); |
146 | 146 |
147 // Mozilla extensions | 147 // Mozilla extensions |
148 Selection getSelection(); | 148 Selection getSelection(); |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 // document in the console. It's possible http://crbug.com/43394 will resolv
e this. | 218 // document in the console. It's possible http://crbug.com/43394 will resolv
e this. |
219 [MeasureAs=PrefixedPageVisibility, ImplementedAs=visibilityState] readonly a
ttribute DOMString webkitVisibilityState; | 219 [MeasureAs=PrefixedPageVisibility, ImplementedAs=visibilityState] readonly a
ttribute DOMString webkitVisibilityState; |
220 [MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute
boolean webkitHidden; | 220 [MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute
boolean webkitHidden; |
221 | 221 |
222 readonly attribute HTMLScriptElement currentScript; | 222 readonly attribute HTMLScriptElement currentScript; |
223 }; | 223 }; |
224 | 224 |
225 Document implements GlobalEventHandlers; | 225 Document implements GlobalEventHandlers; |
226 Document implements ParentNode; | 226 Document implements ParentNode; |
227 | 227 |
OLD | NEW |