Skip to content

Commit c18dc49

Browse files
authored
Tests: Skip the "jQuery.ajax() on unload" test in Safari
The test has been already skipped in Chrome as it dropped support for such requests and now Safari has joined the squad. This will resolve AJAX test errors we've had for a while in Safari 13 & iOS 13. Closes gh-4779
1 parent 8612018 commit c18dc49

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/unit/ajax.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -2280,7 +2280,10 @@ if ( typeof window.ArrayBuffer === "undefined" || typeof new XMLHttpRequest().re
22802280
// Chrome 78 dropped support for synchronous XHR requests inside of
22812281
// beforeunload, unload, pagehide, and visibilitychange event handlers.
22822282
// See https://bugs.chromium.org/p/chromium/issues/detail?id=952452
2283-
if ( !/chrome/i.test( navigator.userAgent ) ) {
2283+
// Safari 13 did similar changes. The below check will catch them both.
2284+
// Edge Legacy fakes Chrome which fakes Safari in their user agents so we need
2285+
// to exclude Edge specifically here so that the test continues to run there.
2286+
if ( !/safari/i.test( navigator.userAgent ) || /edge\//i.test( navigator.userAgent ) ) {
22842287
testIframe(
22852288
"#14379 - jQuery.ajax() on unload",
22862289
"ajax/onunload.html",

0 commit comments

Comments
 (0)