mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Fix more support tests (support.input should only be false in IE8 and checkClone as it is now used is fine in IE)
This commit is contained in:
@@ -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" ) === "";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user