Bug 1376128 - Allow duplicated dictionary keys in action module; r?automatedtester draft
authorAndreas Tolfsen <ato@sny.no>
Wed, 28 Jun 2017 11:06:42 -0700
changeset 602388 8b38cf86cf87be43d0f18b78f987c248f2b6ee40
parent 602387 8a92a335387f47b26ac93d2bca020eb1bd60078c
child 602389 ae99f3a08c532697a2ba01ca906e23db348443fe
push id66419
push userbmo:ato@sny.no
push dateThu, 29 Jun 2017 23:42:10 +0000
reviewersautomatedtester
bugs1376128
milestone56.0a1
Bug 1376128 - Allow duplicated dictionary keys in action module; r?automatedtester We duplicate many keys in the PUA key lookup tables. MozReview-Commit-ID: 9X7mZh3A0Qb
testing/marionette/action.js
--- a/testing/marionette/action.js
+++ b/testing/marionette/action.js
@@ -1,12 +1,14 @@
 /* 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/. */
 
+/* eslint no-dupe-keys:off */
+
 "use strict";
 
 const {classes: Cc, interfaces: Ci, utils: Cu} = Components;
 
 Cu.import("resource://gre/modules/Task.jsm");
 
 Cu.import("chrome://marionette/content/assert.js");
 Cu.import("chrome://marionette/content/element.js");