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