Skip to content

Commit 234a2d8

Browse files
committed
Tests: take Safari 9.1 into account
Safari 9.1 shares its support test results with Safari 9.0 but it's been excluded from the regex catching Safari 9.0. This has been fixed.
1 parent 356a3bc commit 234a2d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/support.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ testIframe(
130130
"radioValue": true,
131131
"reliableMarginLeft": true
132132
};
133-
} else if ( /9\.0(\.\d+|) safari/i.test( userAgent ) ) {
133+
} else if ( /9(\.\d+|) safari/i.test( userAgent ) ) {
134134
expected = {
135135
"ajax": true,
136136
"boxSizingReliable": true,

0 commit comments

Comments
 (0)