Skip to content

Commit 732592c

Browse files
committed
Tests: Fix selector tests in Chrome
For older Safari/iOS we needed to add the `safari` UA check as their reported `WebKit` version was not new enough. However, that check should have also excluded Chrome which was missed in the first iteration. This has been fixed. Also, fix code formatting in `test/unit/css.js`.
1 parent da7057e commit 732592c

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

test/unit/css.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -1773,11 +1773,12 @@ QUnit.test( "Do not throw on frame elements from css method (trac-15098)", funct
17731773
"</style>"
17741774
);
17751775

1776-
var div = jQuery( "<div>" ).appendTo( "#qunit-fixture" ),
1777-
$elem = jQuery( "<div>" ).addClass( "test__customProperties" )
1778-
.appendTo( "#qunit-fixture" ),
1779-
webkitOrBlink = /\webkit\b/i.test( navigator.userAgent ) && !/edge\//i.test( navigator.userAgent ),
1780-
expected = 20;
1776+
var div = jQuery( "<div>" ).appendTo( "#qunit-fixture" ),
1777+
$elem = jQuery( "<div>" ).addClass( "test__customProperties" )
1778+
.appendTo( "#qunit-fixture" ),
1779+
webkitOrBlink = /\webkit\b/i.test( navigator.userAgent ) &&
1780+
!/edge\//i.test( navigator.userAgent ),
1781+
expected = 20;
17811782

17821783
if ( webkitOrBlink ) {
17831784
expected -= 2;

test/unit/selector.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ QUnit.module( "selector", {
66
// in the Chromium UA, but it is locked to an older version there.
77
// Modern WebKit (Safari 13+) locks it to `605.1.15`.
88
// Since the `3.x` branch is also tested on older WebKit UAs, we
9-
// need the `Safari` check as well.
10-
this.safari = /\bapplewebkit\/605\.1\.15\b/i.test( navigator.userAgent ) ||
11-
/\bsafari\b/i.test( navigator.userAgent );
9+
// need the `Safari` check as well. Chrome also includes the `Safari`
10+
// token, though, so we need to explicitly exclude it.
11+
this.safari = /\bapplewebkit\/605\.1\.15\b/i.test( navigator.userAgent ) || (
12+
/\bsafari\b/i.test( navigator.userAgent ) &&
13+
!/\b(?:headless)?chrome\b/i.test( navigator.userAgent )
14+
);
1215
},
1316
afterEach: moduleTeardown
1417
} );

0 commit comments

Comments
 (0)