diff options
Diffstat (limited to 'test/unit/support.js')
-rw-r--r-- | test/unit/support.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index 5be781942..daa8dc664 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -55,17 +55,16 @@ testIframe( ); ( function() { - var expected, version, + var expected, 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": version >= 13, + "clearCloneStyle": true, "cors": true, "createHTMLDocument": true, "focusin": false, |