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

Unified Diff: Source/core/dom/shadow/ShadowRoot.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/Document.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/shadow/ShadowRoot.idl
diff --git a/Source/core/dom/shadow/ShadowRoot.idl b/Source/core/dom/shadow/ShadowRoot.idl
index 38fe3413ce202a41572044e4cdb99238bf1c5cda..6b6629dac9bb61e5d4d7934190fa7456a12c0e3b 100644
--- a/Source/core/dom/shadow/ShadowRoot.idl
+++ b/Source/core/dom/shadow/ShadowRoot.idl
@@ -38,8 +38,7 @@ interface ShadowRoot : DocumentFragment {
[DeprecateAs=ShadowRootGetElementsByTagNameNS] HTMLCollection getElementsByTagNameNS([Default=Undefined] optional DOMString? namespaceURI,
[Default=Undefined] optional DOMString localName);
- Element elementFromPoint([Default=Undefined] optional long x,
- [Default=Undefined] optional long y);
+ Element elementFromPoint(long x, long y);
readonly attribute StyleSheetList styleSheets;
readonly attribute Element host;
« no previous file with comments | « Source/core/dom/Document.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698