Bug 1381636 - Enable the new console frontend in DAMP;r=Honza draft
authorBrian Grinstead <bgrinstead@mozilla.com>
Mon, 24 Jul 2017 09:54:46 -0700
changeset 614498 f049e2947c9223bf076773a9e89a317ce741d826
parent 614262 60a5308fa987676fa5ed9fd5b3ad6c9938af0539
child 614499 26e4991d0f1b05f0dccf1742b516f5e4bb43e70c
push id70028
push userbgrinstead@mozilla.com
push dateMon, 24 Jul 2017 17:11:10 +0000
reviewersHonza
bugs1381636
milestone56.0a1
Bug 1381636 - Enable the new console frontend in DAMP;r=Honza MozReview-Commit-ID: 9cxhK6xlLwV
testing/talos/talos/tests/devtools/addon/content/damp.js
--- a/testing/talos/talos/tests/devtools/addon/content/damp.js
+++ b/testing/talos/talos/tests/devtools/addon/content/damp.js
@@ -18,18 +18,17 @@ const COMPLICATED_URL = webserver + "/te
 
 function Damp() {
   // Path to the temp file where the heap snapshot file is saved. Set by
   // saveHeapSnapshot and read by readHeapSnapshot.
   this._heapSnapshotFilePath = null;
   // HeapSnapshot instance. Set by readHeapSnapshot, used by takeCensus.
   this._snapshot = null;
 
-  // Use the old console for now: https://bugzilla.mozilla.org/show_bug.cgi?id=1306780
-  Services.prefs.setBoolPref("devtools.webconsole.new-frontend-enabled", false);
+  Services.prefs.setBoolPref("devtools.webconsole.new-frontend-enabled", true);
 }
 
 Damp.prototype = {
 
   addTab(url) {
     return new Promise((resolve, reject) => {
       let tab = this._win.gBrowser.selectedTab = this._win.gBrowser.addTab(url);
       let browser = tab.linkedBrowser;