gecko-dev/dom/plugins/test/mochitest/test_cocoa_focus.html
Xidorn Quan b93799ba92 Bug 1213710 part 2 - Rename dom/plugins/test/mochitest/utils.js to plugin-utils.js. r=bsmedberg
So that files outside this dir can also reference it without conflict.

--HG--
rename : dom/plugins/test/mochitest/utils.js => dom/plugins/test/mochitest/plugin-utils.js
extra : source : 136f6591826350948f2e342da1600a983b4bcd76
2015-11-17 09:54:12 +11:00

29 lines
927 B
HTML

<html>
<head>
<title>NPCocoaEventFocusChanged Tests</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript" src="plugin-utils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body onload="runTests()">
<script class="testbody" type="application/javascript">
SimpleTest.waitForExplicitFinish();
setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);
var gOtherWindow;
function runTests() {
// We have to have two top-level windows in play in order to run these tests.
gOtherWindow = window.open("cocoa_focus.html", "", "width=250,height=250");
}
function testsFinished() {
// Tests have finished running, close the new window and end tests.
gOtherWindow.close();
SimpleTest.finish();
}
</script>
</body>
</html>