From 2ace149f485438e8a3af6650f3bb18c1c22e48b6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Mon, 11 Nov 2013 00:42:37 +0100 Subject: [PATCH] No ticket. Remove version sniffing from test/unit/support.js, browsers got updated. --- test/unit/support.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/test/unit/support.js b/test/unit/support.js index 46195d49b..86cc7a269 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -48,11 +48,10 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec ); (function() { - var expected, version, + var expected, userAgent = window.navigator.userAgent; if ( /chrome/i.test( userAgent ) ) { - version = userAgent.match( /chrome\/(\d+)/i )[ 1 ]; expected = { "ajax": true, "boxSizingReliable": true, @@ -64,7 +63,7 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "noCloneChecked": true, "optDisabled": true, "optSelected": true, - "pixelPosition": version >= 28, + "pixelPosition": true, "radioValue": true, "reliableMarginRight": true }; @@ -149,10 +148,9 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "reliableMarginRight":true }; } else if ( /firefox/i.test( userAgent ) ) { - version = userAgent.match( /firefox\/(\d+)/i )[ 1 ]; expected = { "ajax": true, - "boxSizingReliable": version >= 23, + "boxSizingReliable": true, "checkClone": true, "checkOn": true, "clearCloneStyle": true, -- 2.39.5