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

Side by Side Diff: Source/core/dom/Document.idl

Issue 812173002: Make elementFromPoint() arguments non-optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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 | Annotate | Revision Log
OLDNEW
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
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
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;
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/shadow/elementfrompoint-expected.txt ('k') | Source/core/dom/shadow/ShadowRoot.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698