Bug 1454876 - Correct marionette.enabled pref doc. r?maja_zf draft
authorAndreas Tolfsen <ato@sny.no>
Wed, 18 Apr 2018 08:05:26 +0100
changeset 784147 c90379400a5b7fd034e7321a0153f43e8b53e3cd
parent 783966 789e30ff2e3d6e1fcfce1a373c1e5635488d24da
child 784148 8335f98b8ee6b099f07e3b4ac4dfb8aba29cea33
push id106864
push userbmo:ato@sny.no
push dateWed, 18 Apr 2018 07:24:46 +0000
reviewersmaja_zf
bugs1454876
milestone61.0a1
Bug 1454876 - Correct marionette.enabled pref doc. r?maja_zf The documentation for the marionette.enabled preference is wrong: it claims that it is used for disabling the Marionette XPCOM component, but in reality it starts and stops the TCP server. MozReview-Commit-ID: 8oQz8HjPnii
testing/marionette/prefs/marionette.js
--- a/testing/marionette/prefs/marionette.js
+++ b/testing/marionette/prefs/marionette.js
@@ -1,18 +1,18 @@
 /* This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  * You can obtain one at http://mozilla.org/MPL/2.0/. */
 
 /* global pref */
 
-// Marionette is the remote protocol that lets OOP programs communicate
-// with, instrument, and control Gecko.
+// Marionette is the remote protocol that lets OOP programs
+// communicate with, instrument, and control Gecko.
 
-// Controls whether the Marionette component is enabled.
+// Starts and stops the Marionette server.
 pref("marionette.enabled", false);
 
 // Delay server startup until a modal dialogue has been clicked to
 // allow time for user to set breakpoints in Browser Toolbox.
 pref("marionette.debugging.clicktostart", false);
 
 // Marionette logging verbosity.  Allowed values are "fatal", "error",
 // "warn", "info", "config", "debug", and "trace".