mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
16 lines
402 B
Plaintext
16 lines
402 B
Plaintext
// And the things from nsIFrameLoaderOwner
|
|
[NoInterfaceObject]
|
|
interface MozFrameLoaderOwner {
|
|
[ChromeOnly]
|
|
readonly attribute FrameLoader? frameLoader;
|
|
|
|
[ChromeOnly, Throws]
|
|
void presetOpenerWindow(WindowProxy? window);
|
|
|
|
[ChromeOnly, Throws]
|
|
void swapFrameLoaders(XULFrameElement aOtherLoaderOwner);
|
|
|
|
[ChromeOnly, Throws]
|
|
void swapFrameLoaders(HTMLIFrameElement aOtherLoaderOwner);
|
|
};
|