Bug 1441019 - Remove duplicate namespace declaration. r?whimboo draft
authorAndreas Tolfsen <ato@sny.no>
Mon, 26 Feb 2018 11:31:28 +0000
changeset 759870 37ca7d04de5f7a1003fe82e7c6a4c0c03507d9c8
parent 759869 a3584197968ccb7a449c856dec472292cd1ef9ac
child 759871 f260b7a60253a1d9235fdd5fe2f3e536224eb243
push id100500
push userbmo:ato@sny.no
push dateMon, 26 Feb 2018 19:31:26 +0000
reviewerswhimboo
bugs1441019
milestone60.0a1
Bug 1441019 - Remove duplicate namespace declaration. r?whimboo MozReview-Commit-ID: CE1nnRainRE
testing/marionette/event.js
--- a/testing/marionette/event.js
+++ b/testing/marionette/event.js
@@ -25,19 +25,16 @@ function getDOMWindowUtils(win) {
     win = window;
   }
 
   // this assumes we are operating in chrome space
   return win.QueryInterface(Ci.nsIInterfaceRequestor)
       .getInterface(Ci.nsIDOMWindowUtils);
 }
 
-/** @namespace */
-this.event = {};
-
 event.MouseEvents = {
   click: 0,
   dblclick: 1,
   mousedown: 2,
   mouseup: 3,
   mouseover: 4,
   mouseout: 5,
 };