tenfourfox/js/xpconnect/tests/mochitest/test_bug629331.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

38 lines
954 B
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=629331
-->
<head>
<title>Test for Bug 629331</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=629331">Mozilla Bug 629331</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
SimpleTest.waitForExplicitFinish();
function handler(event) {
var obj = JSON.parse(event.data);
if (obj.fun == "finish") {
SimpleTest.finish();
} else {
is(obj.a, obj.b, obj.description);
}
}
window.addEventListener('message', handler, false);
</script>
<iframe src="http://test1.example.org/tests/js/xpconnect/tests/mochitest/test1_bug629331.html">
</iframe>
</pre>
</body>
</html>