Bug 1583694 [wpt PR 19280] - Update interfaces/url.idl, a=testonly

Automatic update from web-platform-tests
Update interfaces/url.idl (#19280)

Source: https://github.com/tidoust/reffy-reports/blob/8fb603b/ed/idl/url.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/589100816
--

wpt-commits: 2ddbd111be8ed6d062ef13fef081b8bbc3202506
wpt-pr: 19280
This commit is contained in:
autofoolip 2019-09-25 16:59:16 +00:00 коммит произвёл moz-wptsync-bot
Родитель f9c7a2c6d8
Коммит 019ba512b3
1 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -3,10 +3,11 @@
// (https://github.com/tidoust/reffy-reports)
// Source: URL Standard (https://url.spec.whatwg.org/)
[Constructor(USVString url, optional USVString base),
Exposed=(Window,Worker),
[Exposed=(Window,Worker),
LegacyWindowAlias=webkitURL]
interface URL {
constructor(USVString url, optional USVString base);
stringifier attribute USVString href;
readonly attribute USVString origin;
attribute USVString protocol;
@ -23,9 +24,10 @@ interface URL {
USVString toJSON();
};
[Constructor(optional (sequence<sequence<USVString>> or record<USVString, USVString> or USVString) init = ""),
Exposed=(Window,Worker)]
[Exposed=(Window,Worker)]
interface URLSearchParams {
constructor(optional (sequence<sequence<USVString>> or record<USVString, USVString> or USVString) init = "");
void append(USVString name, USVString value);
void delete(USVString name);
USVString? get(USVString name);