mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 786938 - disable test_handlerApps.xhtml on OS X 10.10 where it's permaorange
--HG-- extra : rebase_source : 70f7425ae4e021ef05e6e2f1a0fdf90ebe4f28cd
This commit is contained in:
parent
3f83c69ae4
commit
aed05f2065
@ -11,8 +11,9 @@ function test() {
|
||||
|
||||
const isOSXMtnLion = navigator.userAgent.indexOf("Mac OS X 10.8") != -1;
|
||||
const isOSXMavericks = navigator.userAgent.indexOf("Mac OS X 10.9") != -1;
|
||||
if (isOSXMtnLion || isOSXMavericks) {
|
||||
todo(false, "This test fails on OS X 10.8 and 10.9, see bug 786938");
|
||||
const isOSXYosemite = navigator.userAgent.indexOf("Mac OS X 10.10") != -1;
|
||||
if (isOSXMtnLion || isOSXMavericks || isOSXYosemite ) {
|
||||
todo(false, "This test fails on OS X 10.8, 10.9, 10.10, see bug 786938");
|
||||
SimpleTest.finish();
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user