From 00258163584dadf82c5e7f7c1829eda5dcb06e2e Mon Sep 17 00:00:00 2001 From: Andreas Tolfsen Date: Tue, 27 Jun 2017 14:48:36 -0700 Subject: [PATCH] Bug 1376586 - Add back quitApplication command alias; r=davehunt The quitApplication command was accidentally removed in 1e96a289d28a. This adds it back as a recognised command alias in order to not break geckodriver. MozReview-Commit-ID: IZ0h8dv9ILt --HG-- extra : rebase_source : 61550dae3a71973a2028d6384bc3eab388c17c21 --- testing/marionette/driver.js | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/marionette/driver.js b/testing/marionette/driver.js index 6773f57f98ee..5a0c31e2a7c2 100644 --- a/testing/marionette/driver.js +++ b/testing/marionette/driver.js @@ -3265,6 +3265,7 @@ GeckoDriver.prototype.commands = { "acceptConnections": GeckoDriver.prototype.acceptConnections, // deprecated, remove in Firefox 60 "Marionette:Quit": GeckoDriver.prototype.quit, "quit": GeckoDriver.prototype.quit, // deprecated, remove in Firefox 60 + "quitApplication": GeckoDriver.prototype.quit, // deprecated, remove in Firefox 60 // Addon service "Addon:Install": GeckoDriver.prototype.installAddon,