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