2010-04-25 13:58:03 -07:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>NPCocoaEventFocusChanged Tests</title>
|
2010-08-20 09:28:13 -07:00
|
|
|
<script type="application/javascript" src="/MochiKit/packed.js"></script>
|
|
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
2010-04-25 13:58:03 -07:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body onload="runTests()">
|
|
|
|
<script class="testbody" type="application/javascript">
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
|
|
|
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=200,height=200");
|
|
|
|
}
|
|
|
|
|
|
|
|
function testsFinished() {
|
|
|
|
// Tests have finished running, close the new window and end tests.
|
|
|
|
gOtherWindow.close();
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|