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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 | 125 |
126 [PerWorldBindings] NodeList getElementsByName(DOMString elementName); | 126 [PerWorldBindings] NodeList getElementsByName(DOMString elementName); |
127 | 127 |
128 [PutForwards=href] readonly attribute Location location; | 128 [PutForwards=href] readonly attribute Location location; |
129 | 129 |
130 // IE extensions | 130 // IE extensions |
131 [MeasureAs=DocumentCharset, TreatReturnedNullStringAs=Undefined, TreatNullAs
=NullString] attribute DOMString charset; | 131 [MeasureAs=DocumentCharset, TreatReturnedNullStringAs=Undefined, TreatNullAs
=NullString] attribute DOMString charset; |
132 [MeasureAs=DocumentDefaultCharset, TreatReturnedNullStringAs=Undefined] read
only attribute DOMString defaultCharset; | 132 [MeasureAs=DocumentDefaultCharset, TreatReturnedNullStringAs=Undefined] read
only attribute DOMString defaultCharset; |
133 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString readyStat
e; | 133 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString readyStat
e; |
134 | 134 |
135 Element elementFromPoint([Default=Undefined] optional long x, | 135 Element elementFromPoint(long x, long y); |
136 [Default=Undefined] optional long y); | |
137 [MeasureAs=DocumentCaretRangeFromPoint] | 136 [MeasureAs=DocumentCaretRangeFromPoint] |
138 Range caretRangeFromPoint([Default=Undefined] optional long x, | 137 Range caretRangeFromPoint([Default=Undefined] optional long x, |
139 [Default=Undefined] optional long y); | 138 [Default=Undefined] optional long y); |
140 | 139 |
141 // Mozilla extensions | 140 // Mozilla extensions |
142 Selection getSelection(); | 141 Selection getSelection(); |
143 readonly attribute DOMString? characterSet; | 142 readonly attribute DOMString? characterSet; |
144 | 143 |
145 // WebKit extensions | 144 // WebKit extensions |
146 | 145 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 // TODO(davidben): This is a property so attaching a deprecation warning res
ults in false positives when outputting | 203 // TODO(davidben): This is a property so attaching a deprecation warning res
ults in false positives when outputting |
205 // document in the console. It's possible http://crbug.com/43394 will resolv
e this. | 204 // document in the console. It's possible http://crbug.com/43394 will resolv
e this. |
206 [MeasureAs=PrefixedPageVisibility, ImplementedAs=visibilityState] readonly a
ttribute DOMString webkitVisibilityState; | 205 [MeasureAs=PrefixedPageVisibility, ImplementedAs=visibilityState] readonly a
ttribute DOMString webkitVisibilityState; |
207 [MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute
boolean webkitHidden; | 206 [MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute
boolean webkitHidden; |
208 | 207 |
209 readonly attribute HTMLScriptElement currentScript; | 208 readonly attribute HTMLScriptElement currentScript; |
210 }; | 209 }; |
211 | 210 |
212 Document implements GlobalEventHandlers; | 211 Document implements GlobalEventHandlers; |
213 Document implements ParentNode; | 212 Document implements ParentNode; |
OLD | NEW |