mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13518ec124
--HG-- extra : rebase_source : 4c16c86c5be230af22eea89dfb5f893b7c6091dd
21 lines
668 B
Plaintext
21 lines
668 B
Plaintext
/* 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/. */
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
interface nsIDOMNode;
|
|
|
|
/**
|
|
* When we send a mozbrowseropenwindow event (an instance of CustomEvent), we
|
|
* use an instance of this interface as the event's detail.
|
|
*/
|
|
[scriptable, uuid(94377af6-956a-4adf-908b-363f7023ae1a)]
|
|
interface nsIOpenWindowEventDetail : nsISupports
|
|
{
|
|
readonly attribute AString url;
|
|
readonly attribute AString name;
|
|
readonly attribute AString features;
|
|
readonly attribute nsIDOMNode frameElement;
|
|
};
|