Files
Mozilla/mozilla/dom/public/idl/base/Location.idl
vidur%netscape.com 294ecfb965 Changed attribute getter glue to use NS_SUCCESS macro instead of comparing to NS_OK
git-svn-id: svn://10.0.0.236/trunk@42783 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-09 19:19:49 +00:00

26 lines
716 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);
wstring toString();
};
interface NSLocation {
/* IID: { 0xa6cf9108, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
void reload(/* ... */);
void replace(/* ... */);
};