2013-02-19 06:07:44 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* http://url.spec.whatwg.org/#urlutils
|
|
|
|
*
|
|
|
|
* To the extent possible under law, the editors have waived all copyright
|
|
|
|
* and related or neighboring rights to this work. In addition, as of 17
|
|
|
|
* February 2013, the editors have made this specification available under
|
|
|
|
* the Open Web Foundation Agreement Version 1.0, which is available at
|
|
|
|
* http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0.
|
|
|
|
*/
|
|
|
|
|
2014-08-05 02:20:34 +00:00
|
|
|
[NoInterfaceObject,
|
|
|
|
Exposed=(Window, Worker)]
|
2014-08-08 00:45:21 +00:00
|
|
|
interface URLUtils {
|
2014-01-15 02:46:44 +00:00
|
|
|
// Bug 824857: no support for stringifier attributes yet.
|
|
|
|
// stringifier attribute DOMString href;
|
2014-07-11 23:32:14 +00:00
|
|
|
[Throws, CrossOriginWritable=Location]
|
2014-01-15 02:46:44 +00:00
|
|
|
attribute DOMString href;
|
2014-07-11 23:30:27 +00:00
|
|
|
[Throws]
|
2013-09-04 17:05:10 +00:00
|
|
|
readonly attribute DOMString origin;
|
2013-02-19 06:07:44 +00:00
|
|
|
|
2014-07-11 23:30:27 +00:00
|
|
|
[Throws]
|
2013-02-19 06:07:44 +00:00
|
|
|
attribute DOMString protocol;
|
2014-07-11 23:30:27 +00:00
|
|
|
[Throws]
|
2013-09-04 17:05:10 +00:00
|
|
|
attribute DOMString username;
|
2014-07-11 23:30:27 +00:00
|
|
|
[Throws]
|
2013-09-04 17:05:10 +00:00
|
|
|
attribute DOMString password;
|
2014-07-11 23:30:27 +00:00
|
|
|
[Throws]
|
2013-02-19 06:07:44 +00:00
|
|
|
attribute DOMString host;
|
2014-07-11 23:30:27 +00:00
|
|
|
[Throws]
|
2013-02-19 06:07:44 +00:00
|
|
|
attribute DOMString hostname;
|
2014-07-11 23:30:27 +00:00
|
|
|
[Throws]
|
2013-02-19 06:07:44 +00:00
|
|
|
attribute DOMString port;
|
2014-07-11 23:30:27 +00:00
|
|
|
[Throws]
|
2013-02-19 06:07:44 +00:00
|
|
|
attribute DOMString pathname;
|
2014-07-11 23:30:27 +00:00
|
|
|
[Throws]
|
2013-02-19 06:07:44 +00:00
|
|
|
attribute DOMString search;
|
2014-08-08 00:45:21 +00:00
|
|
|
|
|
|
|
attribute URLSearchParams searchParams;
|
|
|
|
|
2014-07-11 23:30:27 +00:00
|
|
|
[Throws]
|
2013-02-19 06:07:44 +00:00
|
|
|
attribute DOMString hash;
|
2014-01-13 22:46:04 +00:00
|
|
|
|
|
|
|
// Bug 824857 should remove this.
|
2014-07-11 23:30:27 +00:00
|
|
|
[Throws]
|
2014-01-13 22:46:04 +00:00
|
|
|
stringifier;
|
2013-02-19 06:07:44 +00:00
|
|
|
};
|