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

Unified Diff: Source/core/html/URL.idl

Issue 24066010: Implement URLUtils and URL interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: updates based on code review comments Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLAreaElement.idl ('k') | Source/core/html/URLUtils.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/URL.idl
diff --git a/Source/core/html/URL.idl b/Source/core/html/URL.idl
index 265f371db8249d1b0bd7d1e19ece6d1bf023e26f..c93a48827254aec86f2a3b98606b23bebac3032b 100644
--- a/Source/core/html/URL.idl
+++ b/Source/core/html/URL.idl
@@ -26,9 +26,14 @@
[
GlobalContext=Window&WorkerGlobalScope,
- Constructor,
+ ConstructorRaisesException,
+ Constructor(DOMString url),
+ Constructor(DOMString url, URL base),
+ Constructor(DOMString url, DOMString base),
ImplementedAs=DOMURL
] interface URL {
[CallWith=ScriptExecutionContext,TreatReturnedNullStringAs=Null] static DOMString createObjectURL(Blob? blob);
[CallWith=ScriptExecutionContext] static void revokeObjectURL(DOMString url);
};
+
+URL implements URLUtils;
« no previous file with comments | « Source/core/html/HTMLAreaElement.idl ('k') | Source/core/html/URLUtils.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698