4 https://bugzilla.mozilla.org/show_bug.cgi?id=772288
8 <title>Test for Bug
772288</title>
9 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
10 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css"/>
12 <body onload=
"doTest()">
13 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=772288">Mozilla Bug
772288</a>
15 <div id=
"content" style=
"display: none">
19 <script type=
"application/javascript">
21 /** Test for Bug
772288 **/
22 SimpleTest.waitForExplicitFinish();
24 const Cu = SpecialPowers.Cu;
27 msg =
"AppConstants should be imported on window";
29 Cu.import(
"resource://gre/modules/AppConstants.jsm", window);
30 ok(AppConstants, msg);
32 ok(false, msg +
" : " + ex);
35 msg =
"AppConstants should be imported on myObj";
38 Cu.import(
"resource://gre/modules/AppConstants.jsm", myObj);
39 ok(myObj.AppConstants, msg);
41 ok(false, msg +
" : " + ex);