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

Unified Diff: third_party/WebKit/Source/core/dom/URL.idl

Issue 1902683003: Rename URLUtils interface as HTMLHyperlinkElementUtils and update. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: re-add toString() non-enumerable; needed Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/URL.idl
diff --git a/third_party/WebKit/Source/core/dom/URL.idl b/third_party/WebKit/Source/core/dom/URL.idl
index 449b13bf27b79a74a8e0bcc4bcac6077f2e514f6..c69b2b28595ed109a17fbf6efa241fe3ce63cda8 100644
--- a/third_party/WebKit/Source/core/dom/URL.idl
+++ b/third_party/WebKit/Source/core/dom/URL.idl
@@ -43,7 +43,18 @@
// TODO(philipj): The return type should not be nullable.
[RaisesException, CallWith=ExecutionContext] static DOMString? createObjectURL(Blob blob);
[CallWith=ExecutionContext] static void revokeObjectURL(DOMString url);
+
+ stringifier attribute USVString href;
+ readonly attribute USVString origin;
+
+ attribute USVString protocol;
+ attribute USVString username;
+ attribute USVString password;
+ attribute USVString host;
+ attribute USVString hostname;
+ attribute USVString port;
+ attribute USVString pathname;
+ attribute USVString search;
readonly attribute URLSearchParams searchParams;
+ attribute USVString hash;
};
-
-URL implements URLUtils;

Powered by Google App Engine
This is Rietveld 408576698