| 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;
|
|
|