author | Gijs Kruitbosch <gijskruitbosch@gmail.com> |
Mon, 18 May 2015 14:30:07 +0100 | |
changeset 248124 | 043466f5a7f1b797d53724d7c4e1e20f3ee4a743 |
parent 248123 | 09369dc533d36ca9204d165536acd32b87906dd1 |
child 248125 | 0d6ee6e7ff2a7dd0ef24bbf13cc776abc1616e20 |
push id | 60888 |
push user | kwierso@gmail.com |
push date | Thu, 11 Jun 2015 01:38:38 +0000 |
treeherder | mozilla-inbound@39e638ed06bf [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | ted |
bugs | 1165890 |
milestone | 41.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/mochitest/browser-test.js +++ b/testing/mochitest/browser-test.js @@ -456,17 +456,17 @@ Tester.prototype = { // stringified gives the original string. As in, this is in fact a // string representation of an integer, so an index into // window.frames. Skip those. return; } if (this._globalProperties.indexOf(prop) == -1) { this._globalProperties.push(prop); if (this._globalPropertyWhitelist.indexOf(prop) == -1) - this.currentTest.addResult(new testResult(false, "leaked window property: " + prop, "", false)); + this.currentTest.addResult(new testResult(false, "test left unexpected property on window: " + prop, "", false)); } }, this); // Clear document.popupNode. The test could have set it to a custom value // for its own purposes, nulling it out it will go back to the default // behavior of returning the last opened popup. document.popupNode = null;