mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 838069 - Intermittent browser_toolbox_window_shortcuts.js - disabling on Mac OS X 10.8 and Windows XP
This commit is contained in:
parent
78d553c1ed
commit
bb9370dfae
@ -11,7 +11,8 @@ let toolbox, toolIDs, idIndex;
|
||||
function test() {
|
||||
waitForExplicitFinish();
|
||||
|
||||
if (window.navigator.oscpu.match(/osx 10\.8/i) || window.navigator.oscpu.match(/windows nt 5\.1/i)) {
|
||||
if (window.navigator.userAgent.indexOf("Mac OS X 10.8") != -1 ||
|
||||
window.navigator.userAgent.indexOf("Windows NT 5.1") != -1) {
|
||||
info("Skipping Mac OSX 10.8 and Windows xp, see bug 838069");
|
||||
finish();
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user