mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Some minor cleanup of the last commit.
This commit is contained in:
parent
97d468fbf0
commit
d558e9eb6f
@ -13,16 +13,15 @@
|
||||
div.innerHTML = " <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";
|
||||
|
||||
var all = div.getElementsByTagName("*"),
|
||||
a = div.getElementsByTagName("a")[0];
|
||||
a = div.getElementsByTagName("a")[0],
|
||||
select = document.createElement("select"),
|
||||
opt = select.appendChild( document.createElement("option") );
|
||||
|
||||
// Can't get basic test support
|
||||
if ( !all || !all.length || !a ) {
|
||||
return;
|
||||
}
|
||||
|
||||
var select = document.createElement("select");
|
||||
var opt = select.appendChild( document.createElement("option") );
|
||||
|
||||
jQuery.support = {
|
||||
// IE strips leading whitespace when .innerHTML is used
|
||||
leadingWhitespace: div.firstChild.nodeType === 3,
|
||||
|
Loading…
Reference in New Issue
Block a user