File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -1732,14 +1732,24 @@ QUnit.test( "Do not throw on frame elements from css method (#15098)", function(
1732
1732
1733
1733
( function ( ) {
1734
1734
var supportsCssVars ,
1735
+ oldSafari = / i p h o n e o s 9 _ / i. test ( navigator . userAgent ) ||
1736
+ / \b 9 \. \d + ( \. \d + ) * s a f a r i / i. test ( navigator . userAgent ) ,
1735
1737
elem = jQuery ( "<div>" ) . appendTo ( document . body ) ,
1736
1738
div = elem [ 0 ] ;
1737
1739
1738
1740
div . style . setProperty ( "--prop" , "value" ) ;
1739
1741
supportsCssVars = ! ! getComputedStyle ( div ) . getPropertyValue ( "--prop" ) ;
1740
1742
elem . remove ( ) ;
1741
1743
1742
- QUnit [ supportsCssVars ? "test" : "skip" ] ( "css(--customProperty)" , function ( assert ) {
1744
+ QUnit [
1745
+
1746
+ // Support: iOS 9.3 only, Safari 9.1 only
1747
+ // Safari 9.1 & iOS 9.3 support CSS custom properties but that support
1748
+ // is buggy which crashes our tests.
1749
+ supportsCssVars && ! oldSafari ?
1750
+ "test" :
1751
+ "skip"
1752
+ ] ( "css(--customProperty)" , function ( assert ) {
1743
1753
jQuery ( "#qunit-fixture" ) . append (
1744
1754
"<style>\n" +
1745
1755
" .test__customProperties {\n" +
You can’t perform that action at this time.
0 commit comments