Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: WebCore/dom/Document.idl

Issue 3509008: Merge 68345 - document.nodesFromRect() needs to be removed from Document.idl... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/517/
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « WebCore/ChangeLog ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « WebCore/ChangeLog ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698