2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "domstubs.idl"
|
|
|
|
|
2013-01-09 08:37:25 -08:00
|
|
|
[scriptable, uuid(79de76e5-994e-4f6b-81aa-42d9adb6e67e)]
|
2007-03-22 10:30:00 -07:00
|
|
|
interface nsIDOMLocation : nsISupports
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* These properties refer to the current location of the document.
|
|
|
|
* This will correspond to the URI shown in the location bar, which
|
|
|
|
* can be different from the documentURI of the document.
|
|
|
|
*/
|
|
|
|
attribute DOMString hash;
|
|
|
|
attribute DOMString host;
|
|
|
|
attribute DOMString hostname;
|
|
|
|
attribute DOMString href;
|
|
|
|
attribute DOMString pathname;
|
|
|
|
attribute DOMString port;
|
|
|
|
attribute DOMString protocol;
|
|
|
|
attribute DOMString search;
|
|
|
|
|
2013-01-09 08:37:25 -08:00
|
|
|
readonly attribute DOMString origin;
|
|
|
|
|
2008-09-05 14:54:53 -07:00
|
|
|
void reload([optional] in boolean forceget);
|
2007-03-22 10:30:00 -07:00
|
|
|
void replace(in DOMString url);
|
|
|
|
void assign(in DOMString url);
|
|
|
|
|
|
|
|
DOMString toString();
|
2012-11-07 08:27:23 -08:00
|
|
|
nsIDOMLocation valueOf();
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|