mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
53 lines
1.7 KiB
XML
53 lines
1.7 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
|
|
type="text/css"?>
|
|
<window title="Basic Plugin Tests"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
<title>Plugin Crash Notification Test</title>
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/MochiKit/packed.js"></script>
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js" />
|
|
<body xmlns="http://www.w3.org/1999/xhtml" onload="runTests()">
|
|
<embed id="plugin1" type="application/x-test" width="200" height="200"></embed>
|
|
</body>
|
|
<script class="testbody" type="application/javascript">
|
|
<![CDATA[
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
var success = false;
|
|
|
|
function onPluginCrashed(aEvent) {
|
|
ok(true, "Plugin crashed notification received");
|
|
|
|
var pluginElement = document.getElementById("plugin1");
|
|
is (pluginElement, aEvent.target, "Plugin crashed event target is plugin element");
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
function runTests() {
|
|
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
|
|
var prefs = Components.classes['@mozilla.org/preferences-service;1']
|
|
.getService(Components.interfaces.nsIPrefBranch);
|
|
if (!prefs.getBoolPref('dom.ipc.plugins.enabled')) {
|
|
ok(true, "Skipping this test when IPC plugins are not enabled.");
|
|
SimpleTest.finish();
|
|
return;
|
|
}
|
|
|
|
document.addEventListener("PluginCrashed", onPluginCrashed, false);
|
|
|
|
var pluginElement = document.getElementById("plugin1");
|
|
try {
|
|
pluginElement.crash();
|
|
} catch (e) {
|
|
}
|
|
}
|
|
]]>
|
|
</script>
|
|
</window>
|
|
|