Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
[gecko.git] / dom / webidl / URLUtils.webidl
blobc864143ef7933b8b978fa6cb80ca534f10e810c8
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  *
6  * The origin of this IDL file is
7  * http://url.spec.whatwg.org/#urlutils
8  *
9  * To the extent possible under law, the editors have waived all copyright
10  * and related or neighboring rights to this work. In addition, as of 17
11  * February 2013, the editors have made this specification available under
12  * the Open Web Foundation Agreement Version 1.0, which is available at
13  * http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0.
14  */
16 [NoInterfaceObject,
17  Exposed=(Window, Worker)]
18 interface URLUtils {
19   // Bug 824857: no support for stringifier attributes yet.
20   //  stringifier attribute DOMString href;
21   [Throws, CrossOriginWritable=Location]
22            attribute DOMString href;
23   [Throws]
24   readonly attribute DOMString origin;
26   [Throws]
27            attribute DOMString protocol;
28   [Throws]
29            attribute DOMString username;
30   [Throws]
31            attribute DOMString password;
32   [Throws]
33            attribute DOMString host;
34   [Throws]
35            attribute DOMString hostname;
36   [Throws]
37            attribute DOMString port;
38   [Throws]
39            attribute DOMString pathname;
40   [Throws]
41            attribute DOMString search;
43   [Throws]
44            attribute DOMString hash;
46   // Bug 824857 should remove this.
47   [Throws]
48   stringifier;
51 [NoInterfaceObject,
52  Exposed=(Window, Worker)]
53 interface URLUtilsSearchParams {
54            attribute URLSearchParams searchParams;