mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
54 lines
1.6 KiB
Plaintext
54 lines
1.6 KiB
Plaintext
/* -*- 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://www.whatwg.org/specs/web-apps/current-work/#the-location-interface
|
|
*
|
|
* © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and
|
|
* Opera Software ASA. You are granted a license to use, reproduce
|
|
* and create derivative works of this document.
|
|
*/
|
|
|
|
[Unforgeable]
|
|
interface Location {
|
|
// Bug 824857: no support for stringifier attributes yet.
|
|
// stringifier attribute USVString href;
|
|
|
|
// Bug 824857 should remove this.
|
|
[Throws]
|
|
stringifier;
|
|
|
|
[Throws, CrossOriginWritable]
|
|
attribute USVString href;
|
|
[Throws]
|
|
readonly attribute USVString origin;
|
|
[Throws]
|
|
attribute USVString protocol;
|
|
[Throws]
|
|
attribute USVString host;
|
|
[Throws]
|
|
attribute USVString hostname;
|
|
[Throws]
|
|
attribute USVString port;
|
|
[Throws]
|
|
attribute USVString pathname;
|
|
[Throws]
|
|
attribute USVString search;
|
|
[Throws]
|
|
attribute USVString hash;
|
|
|
|
[Throws, UnsafeInPrerendering]
|
|
void assign(USVString url);
|
|
|
|
[Throws, CrossOriginCallable, UnsafeInPrerendering]
|
|
void replace(USVString url);
|
|
|
|
// XXXbz there is no forceget argument in the spec! See bug 1037721.
|
|
[Throws, UnsafeInPrerendering]
|
|
void reload(optional boolean forceget = false);
|
|
|
|
// Bug 1085214 [SameObject] readonly attribute USVString[] ancestorOrigins;
|
|
};
|