From: Michał Gołębiowski-Owczarek Date: Mon, 23 Sep 2019 18:00:24 +0000 (+0200) Subject: Tests: Move Android user agent detection above iOS, put Safari last X-Git-Tag: 3.5.0~47 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6276cb2e23375c1f2837b34bd9072ef804f996f1;p=jquery.git Tests: Move Android user agent detection above iOS, put Safari last Android was catching the generic iOS regex. Checking for Android first should eliminate that issue as iOS user agents don't contain the word "Android". Putting Safari last makes Android UAs not be tested against it. --- diff --git a/test/unit/support.js b/test/unit/support.js index 2aad3a968..b280e364e 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -294,12 +294,12 @@ testIframe( expected = expectedMap.chrome; } else if ( /\b(?:9|10)\.\d+(\.\d+)* safari/i.test( userAgent ) ) { expected = expectedMap.safari_9_10; - } else if ( /\b\d+(\.\d+)+ safari/i.test( userAgent ) ) { - expected = expectedMap.safari; } else if ( /firefox\/(?:52|60)/i.test( userAgent ) ) { expected = expectedMap.firefox_60; } else if ( /firefox/i.test( userAgent ) ) { expected = expectedMap.firefox; + } else if ( /android 4\.[0-3]/i.test( userAgent ) ) { + expected = expectedMap.android; } else if ( /iphone os (?:9|10)_/i.test( userAgent ) ) { expected = expectedMap.ios_9_10; } else if ( /iphone os 8_/i.test( userAgent ) ) { @@ -308,8 +308,8 @@ testIframe( expected = expectedMap.ios_7; } else if ( /(?:iphone|ipad);.*(?:iphone)? os \d+_/i.test( userAgent ) ) { expected = expectedMap.ios; - } else if ( /android 4\.[0-3]/i.test( userAgent ) ) { - expected = expectedMap.android; + } else if ( /\b\d+(\.\d+)+ safari/i.test( userAgent ) ) { + expected = expectedMap.safari; } QUnit.test( "Verify that support tests resolve as expected per browser", function( assert ) {