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:
Phil Ringnalda 2015-01-14 22:30:03 -08:00
parent 3f83c69ae4
commit aed05f2065

View File

@ -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;
}