mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
27 lines
757 B
Plaintext
27 lines
757 B
Plaintext
interface Location {
|
|
/* IID: { 0xa6cf906d, 0x15b3, 0x11d2, \
|
|
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
|
|
|
|
attribute wstring hash;
|
|
attribute wstring host;
|
|
attribute wstring hostname;
|
|
noscript attribute wstring href;
|
|
attribute wstring pathname;
|
|
attribute wstring port;
|
|
attribute wstring protocol;
|
|
attribute wstring search;
|
|
|
|
noscript void reload(in boolean forceget);
|
|
noscript void replace(in wstring url);
|
|
void assign(in wstring url);
|
|
|
|
wstring toString();
|
|
};
|
|
|
|
interface NSLocation {
|
|
/* IID: { 0xa6cf9108, 0x15b3, 0x11d2, \
|
|
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
|
|
void reload(/* ... */);
|
|
void replace(/* ... */);
|
|
};
|