| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT | 179 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT |
| 180 attribute [Custom] Location location; | 180 attribute [Custom] Location location; |
| 181 #endif | 181 #endif |
| 182 | 182 |
| 183 // IE extensions | 183 // IE extensions |
| 184 | 184 |
| 185 attribute [ConvertNullStringTo=Undefined, ConvertNullToNullStri
ng] DOMString charset; | 185 attribute [ConvertNullStringTo=Undefined, ConvertNullToNullStri
ng] DOMString charset; |
| 186 readonly attribute [ConvertNullStringTo=Undefined] DOMString defaultChar
set; | 186 readonly attribute [ConvertNullStringTo=Undefined] DOMString defaultChar
set; |
| 187 readonly attribute [ConvertNullStringTo=Undefined] DOMString readyState; | 187 readonly attribute [ConvertNullStringTo=Undefined] DOMString readyState; |
| 188 | 188 |
| 189 | |
| 190 NodeList nodesFromRect(in long x, in long y, | |
| 191 in unsigned long hPadding, | |
| 192 in unsigned long vPadding, | |
| 193 in boolean ignoreClipping); | |
| 194 Element elementFromPoint(in long x, in long y); | 189 Element elementFromPoint(in long x, in long y); |
| 195 Range caretRangeFromPoint(in long x, in long y); | 190 Range caretRangeFromPoint(in long x, in long y); |
| 196 | 191 |
| 197 // Mozilla extensions | 192 // Mozilla extensions |
| 198 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT | 193 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT |
| 199 DOMSelection getSelection(); | 194 DOMSelection getSelection(); |
| 200 #endif | 195 #endif |
| 201 readonly attribute [ConvertNullStringTo=Null] DOMString characterSet; | 196 readonly attribute [ConvertNullStringTo=Null] DOMString characterSet; |
| 202 | 197 |
| 203 // WebKit extensions | 198 // WebKit extensions |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 #endif | 323 #endif |
| 329 | 324 |
| 330 #if defined(LANGUAGE_CPP) && LANGUAGE_CPP | 325 #if defined(LANGUAGE_CPP) && LANGUAGE_CPP |
| 331 // Extra WebCore methods exposed to allow compile-time casting in C++ | 326 // Extra WebCore methods exposed to allow compile-time casting in C++ |
| 332 boolean isHTMLDocument(); | 327 boolean isHTMLDocument(); |
| 333 #endif | 328 #endif |
| 334 | 329 |
| 335 }; | 330 }; |
| 336 | 331 |
| 337 } | 332 } |
| OLD | NEW |