mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
28 lines
842 B
HTML
28 lines
842 B
HTML
<html>
|
|
<head>
|
|
<title>NPCocoaEventFocusChanged Tests</title>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="application/javascript" src="utils.js"></script>
|
|
</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>
|