author | Andreas Tolfsen <ato@sny.no> |
Fri, 17 Aug 2018 09:46:46 +0100 | |
changeset 432095 | f334098ab7bc805488005b3f09537e59a953cccb |
parent 432094 | 131559bd826a1ea9c58f63de32a62eb67d1000bf |
child 432097 | 00b7caa950247c3d1e1cb6cd8f728b1a5edbc3b7 |
push id | 106631 |
push user | atolfsen@mozilla.com |
push date | Fri, 17 Aug 2018 12:01:21 +0000 |
treeherder | mozilla-inbound@f334098ab7bc [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | whimboo |
bugs | 1484153, 1464469 |
milestone | 63.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/testing/marionette/listener.js +++ b/testing/marionette/listener.js @@ -339,17 +339,17 @@ const loadListener = { } }, observe(subject, topic) { const win = curContainer.frame; const winID = subject.QueryInterface(Ci.nsISupportsPRUint64).data; const curWinID = win.windowUtils.outerWindowID; - logger.debug(`Received observer notification ${topic} for ${winID}`); + logger.debug(`Received observer notification ${topic}`); switch (topic) { // In the case when the currently selected frame is closed, // there will be no further load events. Stop listening immediately. case "outer-window-destroyed": if (curWinID === winID) { this.stop(); sendOk(this.commandID);