Tests: Make regexes for iOS devices more rigid

This commit is contained in:
Michał Gołębiowski 2015-10-30 19:16:27 +01:00
parent 47e2aa6593
commit 015d16c02d

View File

@ -178,7 +178,7 @@ testIframeWithCallback(
"radioValue": true, "radioValue": true,
"reliableMarginLeft": false "reliableMarginLeft": false
}; };
} else if ( /iphone os 9/i.test( userAgent ) ) { } else if ( /iphone os 9_/i.test( userAgent ) ) {
expected = { expected = {
"ajax": true, "ajax": true,
"boxSizingReliable": true, "boxSizingReliable": true,
@ -195,7 +195,7 @@ testIframeWithCallback(
"radioValue": true, "radioValue": true,
"reliableMarginLeft": true "reliableMarginLeft": true
}; };
} else if ( /iphone os 8/i.test( userAgent ) ) { } else if ( /iphone os 8_/i.test( userAgent ) ) {
expected = { expected = {
"ajax": true, "ajax": true,
"boxSizingReliable": true, "boxSizingReliable": true,
@ -212,7 +212,7 @@ testIframeWithCallback(
"radioValue": true, "radioValue": true,
"reliableMarginLeft": true "reliableMarginLeft": true
}; };
} else if ( /iphone os 7/i.test( userAgent ) ) { } else if ( /iphone os 7_/i.test( userAgent ) ) {
expected = { expected = {
"ajax": true, "ajax": true,
"boxSizingReliable": true, "boxSizingReliable": true,