Bug 705047 followup, the || and or keys are right next to each other

This commit is contained in:
Phil Ringnalda 2012-09-03 23:42:34 -07:00
parent 12b9fa4dcd
commit 5b03f3ae48
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ SimpleTest.waitForExplicitFinish();
const isOSXLion = navigator.userAgent.indexOf("Mac OS X 10.7") != -1;
const isOSXMtnLion = navigator.userAgent.indexOf("Mac OS X 10.8") != -1;
if (isOSXLion or isOSXMtnLion) {
if (isOSXLion || isOSXMtnLion) {
todo(false, "Can't test plugin crash notification on OS X 10.7 or 10.8, see bug 705047");
SimpleTest.finish();
}

View File

@ -19,7 +19,7 @@ SimpleTest.waitForExplicitFinish();
const isOSXLion = navigator.userAgent.indexOf("Mac OS X 10.7") != -1;
const isOSXMtnLion = navigator.userAgent.indexOf("Mac OS X 10.8") != -1;
if (isOSXLion or isOSXMtnLion) {
if (isOSXLion || isOSXMtnLion) {
todo(false, "Can't test plugin crash notification on OS X 10.7 or 10.8, see bug 705047");
SimpleTest.finish();
}