зеркало из https://github.com/mozilla/gecko-dev.git
20 строки
614 B
XML
20 строки
614 B
XML
<?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>
|