Backed out changeset d8dc72ab2406 (bug 1359653)

This commit is contained in:
Sebastian Hengst 2017-05-06 11:02:09 +02:00
Родитель 0584d6d6d4
Коммит 654262208b
4 изменённых файлов: 8 добавлений и 9 удалений

Просмотреть файл

@ -47,9 +47,8 @@ const { addDebuggerToGlobal } = Cu.import("resource://gre/modules/jsdebugger.jsm
const systemPrincipal = Cc["@mozilla.org/systemprincipal;1"]
.createInstance(Ci.nsIPrincipal);
var { loadSubScript, loadSubScriptWithOptions } =
Cc["@mozilla.org/moz/jssubscript-loader;1"]
.getService(Ci.mozIJSSubScriptLoader);
var { loadSubScript } = Cc["@mozilla.org/moz/jssubscript-loader;1"]
.getService(Ci.mozIJSSubScriptLoader);
/**
* Initializes any test that needs to work with add-ons.

Просмотреть файл

@ -7,7 +7,7 @@ function run_test() {
do_test_pending();
let global = testGlobal("test");
loadSubScriptWithOptions(SOURCE_URL, {target: global, ignoreCache: true});
loadSubScript(SOURCE_URL, global);
Cu.forceGC(); Cu.forceGC(); Cu.forceGC();
DebuggerServer.registerModule("xpcshell-test/testactors");
@ -33,7 +33,7 @@ function run_test() {
packet = yield executeOnNextTickAndWaitForPause(function () {
reload(tabClient).then(function () {
loadSubScriptWithOptions(SOURCE_URL, {target: global, ignoreCache: true});
loadSubScript(SOURCE_URL, global);
});
}, client);
do_check_eq(packet.type, "paused");

Просмотреть файл

@ -7,7 +7,7 @@ function run_test() {
do_test_pending();
let global = createTestGlobal("test");
loadSubScriptWithOptions(SOURCE_URL, {target: global, ignoreCache: true});
loadSubScript(SOURCE_URL, global);
Cu.forceGC(); Cu.forceGC(); Cu.forceGC();
DebuggerServer.registerModule("xpcshell-test/testactors");
@ -33,7 +33,7 @@ function run_test() {
packet = yield executeOnNextTickAndWaitForPause(function () {
reload(tabClient).then(function () {
loadSubScriptWithOptions(SOURCE_URL, {target: global, ignoreCache: true});
loadSubScript(SOURCE_URL, global);
});
}, client);
do_check_eq(packet.type, "paused");

Просмотреть файл

@ -7,7 +7,7 @@ function run_test() {
do_test_pending();
let global = createTestGlobal("test");
loadSubScriptWithOptions(SOURCE_URL, {target: global, ignoreCache: true});
loadSubScript(SOURCE_URL, global);
Cu.forceGC(); Cu.forceGC(); Cu.forceGC();
DebuggerServer.registerModule("xpcshell-test/testactors");
@ -34,7 +34,7 @@ function run_test() {
packet = yield executeOnNextTickAndWaitForPause(function () {
reload(tabClient).then(function () {
loadSubScriptWithOptions(SOURCE_URL, {target: global, ignoreCache: true});
loadSubScript(SOURCE_URL, global);
});
}, client);
do_check_eq(packet.type, "paused");