summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-03-29 15:11:43 +0200
committerJose <jose@zeroc.com>2018-03-29 15:11:43 +0200
commitb96cc78d56bbca4ad8d0b655518d68831c546aa9 (patch)
treeef1df928a6a3fc3f21bd6c17df0883d4f44159d3 /scripts/Util.py
parentDo not unload DLLs with UWP test controller (diff)
downloadice-b96cc78d56bbca4ad8d0b655518d68831c546aa9.tar.bz2
ice-b96cc78d56bbca4ad8d0b655518d68831c546aa9.tar.xz
ice-b96cc78d56bbca4ad8d0b655518d68831c546aa9.zip
Do not use WebWorkers with IE11
WebWorkers with IE11 can get stall, updated the timer to not use a WebWorker with IE11 and test scripts to not run tests with worker option
Diffstat (limited to 'scripts/Util.py')
-rw-r--r--scripts/Util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index ac4606dc240..a354ab417ce 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -3632,7 +3632,7 @@ class JavaScriptMapping(Mapping):
"serialize" : [False],
"mx" : [False],
"es5" : [True] if current.config.es5 else [False, True],
- "worker" : [False, True] if current.config.browser else [False],
+ "worker" : [False, True] if current.config.browser and current.config.browser != "Ie" else [False],
}
return options