diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-09-11 17:23:17 -0500 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-09-11 17:23:17 -0500 |
commit | 1a9f8d9bb17cceb733cc83f106c96e424acd14f9 (patch) | |
tree | f07a149a67f68a8af9e9bc950b78e352565e1dae /src/attributes | |
parent | d092a88e85a1a66bfc2681e0a4c9648df0dee666 (diff) | |
download | jquery-1a9f8d9bb17cceb733cc83f106c96e424acd14f9.tar.gz jquery-1a9f8d9bb17cceb733cc83f106c96e424acd14f9.zip |
Fix more support tests (support.input should only be false in IE8 and checkClone as it is now used is fine in IE)
Diffstat (limited to 'src/attributes')
-rw-r--r-- | src/attributes/support.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/attributes/support.js b/src/attributes/support.js index 5d4be1aa4..aeeb3af2f 100644 --- a/src/attributes/support.js +++ b/src/attributes/support.js @@ -44,8 +44,9 @@ define([ select.disabled = true; support.optDisabled = !opt.disabled; + // Support: IE8 only // Check if we can trust getAttribute("value") - input = document.createElement("input"); + input = document.createElement( "input" ); input.setAttribute( "value", "" ); support.input = input.getAttribute( "value" ) === ""; |