Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/xul/test/chrome.toml
<?xml version="1.0"?>
<!--
-->
onload="setTimeout(runTests, 0);">
<!-- test results are displayed in the html:body -->
</body>
<!-- test code goes here -->
<script type="text/template">
<![CDATA[
SimpleTest.waitForExplicitFinish();
function runTests() {
ok(false, "Shouldn't execute");
SimpleTest.finish();
}
]]>
</script>
<script type="text/javascript">
<![CDATA[
SimpleTest.waitForExplicitFinish();
function runTests() {
ok(true, "Should execute");
SimpleTest.finish();
}
]]>
</script>
</window>