Bug 1363539 - Remove dependency on DevTools from test_onGarbageCollection.html. r=sfink draft
authorAlexandre Poirot <poirot.alex@gmail.com>
Wed, 22 Feb 2017 12:45:11 +0100
changeset 575121 38a9f8878aa32b6c3373e5a0637a92c620ed8d3f
parent 574519 b21b974d60d3075ae24f6fb1bae75d0f122f28fc
child 627825 82eec7dafd24921ec8dc13bd0a7a9b7e8957637f
push id57958
push userbmo:poirot.alex@gmail.com
push dateTue, 09 May 2017 21:46:56 +0000
reviewerssfink
bugs1363539
milestone55.0a1
Bug 1363539 - Remove dependency on DevTools from test_onGarbageCollection.html. r=sfink MozReview-Commit-ID: LQ8oCAyC7sF
js/xpconnect/tests/chrome/test_onGarbageCollection.html
--- a/js/xpconnect/tests/chrome/test_onGarbageCollection.html
+++ b/js/xpconnect/tests/chrome/test_onGarbageCollection.html
@@ -8,23 +8,28 @@
   <body xmlns="http://www.w3.org/1999/xhtml">
     <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1150253"
        target="_blank">Mozilla Bug 1150253</a>
 
     <script type="application/javascript">
     SimpleTest.waitForExplicitFinish();
     const Cu = Components.utils;
 
-    Cu.import("resource://devtools/shared/Loader.jsm");
-    const require = devtools.require;
-
     const { gc } = Cu.getJSTestingFunctions();
 
-    const Debugger = require("Debugger");
-    const dbg = new Debugger(this);
+    // Instanciate `Debugger` in a sandbox as Debugger requires to be created
+    // in a compartment different than the debuggee.
+    let sandbox = Cu.Sandbox(Components.Constructor("@mozilla.org/systemprincipal;1", "nsIPrincipal")());
+    Cu.evalInSandbox(
+      "Components.utils.import('resource://gre/modules/jsdebugger.jsm');" +
+      "addDebuggerToGlobal(this);",
+      sandbox
+    );
+
+    const dbg = new sandbox.Debugger(this);
 
     dbg.memory.onGarbageCollection = function (data) {
       // Don't keep calling this hook after we finish.
       dbg.enabled = false;
 
       ok(data, "The onGarbageCollection hook was fired.");
       SimpleTest.finish();
     };