diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2014-01-22 14:50:36 -0800 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2014-01-23 13:04:40 -0500 |
commit | a20494228d51c57c454ff9f10a4ba8bbdda0e49c (patch) | |
tree | c19061e8cf64c93e9017b875e89592df050db6de /test/unit/support.js | |
parent | 3f3f458974fe0bdccfe9042c9503fd2d03e2f6ff (diff) | |
download | jquery-a20494228d51c57c454ff9f10a4ba8bbdda0e49c.tar.gz jquery-a20494228d51c57c454ff9f10a4ba8bbdda0e49c.zip |
Manipulation: Use textarea for missing IE defaultValue check
IE11 fixed the checkbox defaultValue issue but not textarea. Rather than
creating a new detect name I'm reusing the old one to protect anyone who
is unwisely using this externally. Re-fixing the defaultValue when it
doesn't need to be done is not a problem, so leave that code for IE11.
Fixes #14716
Closes gh-1495
Diffstat (limited to 'test/unit/support.js')
-rw-r--r-- | test/unit/support.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index efd4f820b..10defc5e9 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -92,7 +92,7 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "clearCloneStyle": false, "cors": true, "focusinBubbles": true, - "noCloneChecked": true, + "noCloneChecked": false, "optDisabled": true, "optSelected": false, "pixelPosition": true, |