mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
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:
parent
c4c5304de9
commit
85271f7e31
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user