5 var root = document.documentElement,
6 script = document.createElement("script"),
7 div = document.createElement("div"),
8 id = "script" + (new Date).getTime();
10 div.style.display = "none";
11 div.innerHTML = ' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param></object>';
13 var all = div.getElementsByTagName("*"),
14 a = div.getElementsByTagName("a")[0];
16 // Can't get basic test support
17 if ( !all || !all.length || !a ) {
22 // IE strips leading whitespace when .innerHTML is used
23 leadingWhitespace: div.firstChild.nodeType == 3,
25 // Make sure that tbody elements aren't automatically inserted
26 // IE will insert them into empty tables
27 tbody: !div.getElementsByTagName("tbody").length,
29 // Make sure that you can get all elements in an <object> element
30 // IE 7 always returns no results
31 objectAll: !!div.getElementsByTagName("object")[0]
32 .getElementsByTagName("*").length,
34 // Make sure that link elements get serialized correctly by innerHTML
35 // This requires a wrapper element in IE
36 htmlSerialize: !!div.getElementsByTagName("link").length,
38 // Get the style information from getAttribute
39 // (IE uses .cssText insted)
40 style: /red/.test( a.getAttribute("style") ),
42 // Make sure that URLs aren't manipulated
43 // (IE normalizes it by default)
44 hrefNormalized: a.getAttribute("href") === "/a",
46 // Make sure that element opacity exists
47 // (IE uses filter instead)
48 opacity: a.style.opacity === "0.5",
50 // Verify style float existence
51 // (IE uses styleFloat instead of cssFloat)
52 cssFloat: !!a.style.cssFloat,
54 // Will be defined later
59 script.type = "text/javascript";
61 script.appendChild( document.createTextNode( "window." + id + "=1;" ) );
64 root.insertBefore( script, root.firstChild );
66 // Make sure that the execution of code works by injecting a script
67 // tag with appendChild/createTextNode
68 // (IE doesn't support this, fails, and uses .text instead)
70 jQuery.support.scriptEval = true;
74 root.removeChild( script );
76 if ( div.attachEvent && div.fireEvent ) {
77 div.attachEvent("onclick", function(){
78 // Cloning a node shouldn't copy over any
79 // bound event handlers (IE does this)
80 jQuery.support.noCloneEvent = false;
81 div.detachEvent("onclick", arguments.callee);
83 div.cloneNode(true).fireEvent("onclick");
88 var styleFloat = jQuery.support.cssFloat ? "cssFloat" : "styleFloat";
95 styleFloat: styleFloat,
97 maxlength: "maxLength",
98 cellspacing: "cellSpacing",