diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2018-07-09 18:37:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-09 18:37:52 +0200 |
commit | cc95204589eff52eb4eb543134c56c4a3a84e50a (patch) | |
tree | 20b7218e2a368bb5f05141358023a10f0736693e /test/unit/support.js | |
parent | e743cbd28553267f955f71ea7248377915613fd9 (diff) | |
download | jquery-cc95204589eff52eb4eb543134c56c4a3a84e50a.tar.gz jquery-cc95204589eff52eb4eb543134c56c4a3a84e50a.zip |
Tests: Add support test results for Firefox 61+
Firefox 61 now passes the reliableMarginLeft test.
Closes gh-4122
Diffstat (limited to 'test/unit/support.js')
-rw-r--r-- | test/unit/support.js | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index 199067975..331c349a5 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -160,7 +160,7 @@ testIframe( "reliableMarginLeft": true, "scrollboxSize": true }, - firefox: { + firefox_60: { "ajax": true, "boxSizingReliable": true, "checkClone": true, @@ -177,6 +177,23 @@ testIframe( "reliableMarginLeft": false, "scrollboxSize": true }, + firefox: { + "ajax": true, + "boxSizingReliable": true, + "checkClone": true, + "checkOn": true, + "clearCloneStyle": true, + "cors": true, + "createHTMLDocument": true, + "focusin": false, + "noCloneChecked": true, + "optSelected": true, + "pixelBoxStyles": true, + "pixelPosition": true, + "radioValue": true, + "reliableMarginLeft": true, + "scrollboxSize": true + }, ios_11: { "ajax": true, "boxSizingReliable": true, @@ -279,6 +296,8 @@ testIframe( expected = expectedMap.safari_11; } else if ( /\b(?:9|10)\.\d(\.\d+)* safari/i.test( userAgent ) ) { expected = expectedMap.safari_9_10; + } else if ( /firefox\/60/i.test( userAgent ) ) { + expected = expectedMap.firefox_60; } else if ( /firefox/i.test( userAgent ) ) { expected = expectedMap.firefox; } else if ( /iphone os 11_/i.test( userAgent ) ) { |