Bug 696009 - Fix trivial mistake in a0784cecf9bd which would have caused us to use this fix on all platforms whereas it is only needed on linux - r=bustage

This commit is contained in:
Benoit Jacob 2011-10-22 13:55:20 -04:00
parent c4c5304de9
commit 85271f7e31

View File

@ -211,7 +211,7 @@ function start() {
Reporter.prototype.startPage = function(url) {
dump('WebGL mochitest: starting page ' + url + '\n');
if (kIsLinux != -1) {
if (kIsLinux) {
dump('Calling garbageCollect()\n');
SpecialPowers.DOMWindowUtils.garbageCollect();
}