Bug 1890793: Assert CallArgs::newTarget is not gray. r=spidermonkey-reviewers,sfink...
[gecko.git] / dom / chrome-webidl / PluginCrashedEvent.webidl
blobd683d74e0d52e9dacb94be98d0ff1f621cddc393
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  */
7 [ChromeOnly,
8  Exposed=Window]
9 interface PluginCrashedEvent : Event
11   constructor(DOMString type,
12               optional PluginCrashedEventInit eventInitDict = {});
14   readonly attribute unsigned long pluginID;
15   readonly attribute DOMString pluginDumpID;
16   readonly attribute DOMString pluginName;
17   readonly attribute DOMString? pluginFilename;
18   readonly attribute boolean submittedCrashReport;
19   readonly attribute boolean gmpPlugin;
22 dictionary PluginCrashedEventInit : EventInit
24   unsigned long pluginID = 0;
25   DOMString pluginDumpID = "";
26   DOMString pluginName = "";
27   DOMString? pluginFilename = null;
28   boolean submittedCrashReport = false;
29   boolean gmpPlugin = false;