diff options
author | Zack Hall <zackhall@outlook.com> | 2016-01-21 16:24:42 -0800 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2016-02-13 20:44:04 +0100 |
commit | d230d51731869827e00202c7850680a5c438e678 (patch) | |
tree | 031ecdd80f81d62946cd6a7bc627f854620ae4a0 | |
parent | 76ca957dac6aaa17c9d46c19351b8a993b23ebcd (diff) | |
download | jquery-d230d51731869827e00202c7850680a5c438e678.tar.gz jquery-d230d51731869827e00202c7850680a5c438e678.zip |
Tests: Set Edge's expected support for clearCloneStyle to true
This is done for a version 13 or newer as the bug still exists in Edge
12.
(cherry-picked from 28f0329a02c453ae26b6bc028b6aaeec578bef6f)
Closes gh-2857
-rw-r--r-- | test/unit/support.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index 9f0937a93..5d3e38a4b 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -53,16 +53,17 @@ testIframeWithCallback( ); ( function() { - var expected, + var expected, version, userAgent = window.navigator.userAgent; if ( /edge\//i.test( userAgent ) ) { + version = userAgent.match( /edge\/(\d+)/i )[ 1 ]; expected = { "ajax": true, "boxSizingReliable": true, "checkClone": true, "checkOn": true, - "clearCloneStyle": false, + "clearCloneStyle": version >= 13, "cors": true, "createHTMLDocument": true, "focusin": false, |