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
60 script.type = "text/javascript";
62 script.appendChild( document.createTextNode( "window." + id + "=1;" ) );
65 root.insertBefore( script, root.firstChild );
67 // Make sure that the execution of code works by injecting a script
68 // tag with appendChild/createTextNode
69 // (IE doesn't support this, fails, and uses .text instead)
71 jQuery.support.scriptEval = true;
75 root.removeChild( script );
77 if ( div.attachEvent && div.fireEvent ) {
78 div.attachEvent("onclick", function(){
79 // Cloning a node shouldn't copy over any
80 // bound event handlers (IE does this)
81 jQuery.support.noCloneEvent = false;
82 div.detachEvent("onclick", arguments.callee);
84 div.cloneNode(true).fireEvent("onclick");
87 // Figure out if the W3C box model works as expected
88 // document.body must exist before we can do this
90 var div = document.createElement("div");
91 div.style.width = div.style.paddingLeft = "1px";
93 document.body.appendChild( div );
94 jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
95 document.body.removeChild( div ).style.display = 'none';
99 var styleFloat = jQuery.support.cssFloat ? "cssFloat" : "styleFloat";
103 "class": "className",
105 cssFloat: styleFloat,
106 styleFloat: styleFloat,
107 readonly: "readOnly",
108 maxlength: "maxLength",
109 cellspacing: "cellSpacing",