2020-02-05 00:28:57 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2018-07-06 03:14:18 +03: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/. */
|
|
|
|
|
|
|
|
interface nsIDocShell;
|
|
|
|
interface nsIWebNavigation;
|
2020-08-04 23:51:45 +03:00
|
|
|
interface nsIOpenWindowInfo;
|
2018-07-06 03:14:18 +03:00
|
|
|
|
2020-02-05 00:28:57 +03:00
|
|
|
[ChromeOnly,
|
2019-09-27 18:26:14 +03:00
|
|
|
Exposed=Window]
|
2018-07-06 03:14:18 +03:00
|
|
|
interface XULFrameElement : XULElement
|
|
|
|
{
|
2019-10-17 18:38:39 +03:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
2018-07-06 03:14:18 +03:00
|
|
|
readonly attribute nsIDocShell? docShell;
|
|
|
|
readonly attribute nsIWebNavigation? webNavigation;
|
|
|
|
|
|
|
|
readonly attribute WindowProxy? contentWindow;
|
2020-06-16 21:12:46 +03:00
|
|
|
readonly attribute Document? contentDocument;
|
|
|
|
|
|
|
|
readonly attribute unsigned long long browserId;
|
2020-08-04 23:51:45 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The optional open window information provided by the window creation code
|
|
|
|
* and used to initialize a new browser.
|
|
|
|
*/
|
|
|
|
attribute nsIOpenWindowInfo? openWindowInfo;
|
2018-07-06 03:14:18 +03:00
|
|
|
};
|
2018-07-06 03:14:29 +03:00
|
|
|
|
2019-09-24 18:22:26 +03:00
|
|
|
XULFrameElement includes MozFrameLoaderOwner;
|