gecko/js/xpconnect/tests/mochitest/test_bug772288.html
Bobby Holley 9f03f90fb7 Bug 792036 - Automated fixups. r=mccr8
find /files/mozilla/build/d/_tests/testing/mochitest/tests/ | egrep "\.(xhtml|html|xml|js)$" | grep -v SimpleTest | grep -vi mochikit | grep -v simpleThread | grep -v test_ipc_messagemanager_blob.html | grep -v "indexedDB/test" | xargs grep -l Components |  xargs grep -L enablePrivilege | perl -pe 's#.*mochitest/tests/##' | xargs perl -p -i.bakkk -e 's/Components\.interfaces(\s|;|\.|\[)/SpecialPowers\.Ci$1/g, s/SpecialPowers\.wrap\(Components\)\.(.)(lasses|tils|nterfaces|esults)/SpecialPowers.C$1/g, s/(?<![\.a-zA-Z])Components/SpecialPowers\.Components/g, s/window\.Components/window\.SpecialPowers\.Components/g'
2012-09-24 14:46:29 +02:00

51 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=772288
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 772288</title>
<script type="application/javascript" 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 = "Services should be imported on window";
try {
Cu.import("resource://gre/modules/Services.jsm", window);
ok(Services, msg);
} catch (ex) {
ok(false, msg + " : " + ex);
}
msg = "Services should be imported on myObj";
try {
var myObj = {};
Cu.import("resource://gre/modules/Services.jsm", myObj);
ok(myObj.Services, msg);
} catch (ex) {
ok(false, msg + " : " + ex);
}
SimpleTest.finish();
}
</script>
</pre>
</body>
</html>