Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<!--
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 772288</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body onload="doTest()">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=772288">Mozilla Bug 772288</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 772288 **/
SimpleTest.waitForExplicitFinish();
const Cu = SpecialPowers.Cu;
function doTest() {
msg = "AppConstants should be imported on window";
try {
ok(AppConstants, msg);
} catch (ex) {
ok(false, msg + " : " + ex);
}
msg = "AppConstants should be imported on myObj";
try {
var myObj = {};
ok(myObj.AppConstants, msg);
} catch (ex) {
ok(false, msg + " : " + ex);
}
SimpleTest.finish();
}
</script>
</pre>
</body>
</html>