mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-08 16:30:29 +00:00
20 lines
614 B
Plaintext
20 lines
614 B
Plaintext
|
<?xml version="1.0"?>
|
||
|
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
|
||
|
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
|
||
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml" onload="boom();">
|
||
|
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
SimpleTest.waitForExplicitFinish();
|
||
|
|
||
|
function boom() {
|
||
|
ok(true, "Didn't crash");
|
||
|
SimpleTest.finish();
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
|
||
|
<html:span datasources="0" />
|
||
|
|
||
|
</window>
|