7 var root = document.documentElement,
8 script = document.createElement("script"),
9 div = document.createElement("div"),
10 id = "script" + jQuery.now();
12 div.style.display = "none";
13 div.innerHTML = " <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";
15 var all = div.getElementsByTagName("*"),
16 a = div.getElementsByTagName("a")[0],
17 select = document.createElement("select"),
18 opt = select.appendChild( document.createElement("option") );
20 // Can't get basic test support
21 if ( !all || !all.length || !a ) {
26 // IE strips leading whitespace when .innerHTML is used
27 leadingWhitespace: div.firstChild.nodeType === 3,
29 // Make sure that tbody elements aren't automatically inserted
30 // IE will insert them into empty tables
31 tbody: !div.getElementsByTagName("tbody").length,
33 // Make sure that link elements get serialized correctly by innerHTML
34 // This requires a wrapper element in IE
35 htmlSerialize: !!div.getElementsByTagName("link").length,
37 // Get the style information from getAttribute
38 // (IE uses .cssText insted)
39 style: /red/.test( a.getAttribute("style") ),
41 // Make sure that URLs aren't manipulated
42 // (IE normalizes it by default)
43 hrefNormalized: a.getAttribute("href") === "/a",
45 // Make sure that element opacity exists
46 // (IE uses filter instead)
47 // Use a regex to work around a WebKit issue. See #5145
48 opacity: /^0.55$/.test( a.style.opacity ),
50 // Verify style float existence
51 // (IE uses styleFloat instead of cssFloat)
52 cssFloat: !!a.style.cssFloat,
54 // Make sure that if no value is specified for a checkbox
55 // that it defaults to "on".
56 // (WebKit defaults to "" instead)
57 checkOn: div.getElementsByTagName("input")[0].value === "on",
59 // Make sure that a selected-by-default option has a working selected property.
60 // (WebKit defaults to false instead of true, IE too, if it's in an optgroup)
61 optSelected: opt.selected,
63 // Will be defined later
69 reliableHiddenOffsets: true
72 // Make sure that the options inside disabled selects aren't marked as disabled
73 // (WebKit marks them as diabled)
74 select.disabled = true;
75 jQuery.support.optDisabled = !opt.disabled;
77 script.type = "text/javascript";
79 script.appendChild( document.createTextNode( "window." + id + "=1;" ) );
82 root.insertBefore( script, root.firstChild );
84 // Make sure that the execution of code works by injecting a script
85 // tag with appendChild/createTextNode
86 // (IE doesn't support this, fails, and uses .text instead)
88 jQuery.support.scriptEval = true;
92 root.removeChild( script );
94 if ( div.attachEvent && div.fireEvent ) {
95 div.attachEvent("onclick", function click() {
96 // Cloning a node shouldn't copy over any
97 // bound event handlers (IE does this)
98 jQuery.support.noCloneEvent = false;
99 div.detachEvent("onclick", click);
101 div.cloneNode(true).fireEvent("onclick");
104 div = document.createElement("div");
105 div.innerHTML = "<input type='radio' name='radiotest' checked='checked'/>";
107 var fragment = document.createDocumentFragment();
108 fragment.appendChild( div.firstChild );
110 // WebKit doesn't clone checked state correctly in fragments
111 jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked;
113 // Figure out if the W3C box model works as expected
114 // document.body must exist before we can do this
116 var div = document.createElement("div");
117 div.style.width = div.style.paddingLeft = "1px";
119 document.body.appendChild( div );
120 jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
122 // Check if table cells still have offsetWidth/Height when they are set
123 // to display:none and there are still other visible table cells in a
124 // table row; if so, offsetWidth/Height are not reliable for use when
125 // determining if an element has been hidden directly using
126 // display:none (it is still safe to use offsets if a parent element is
127 // hidden; don safety goggles and see bug #4512 for more information).
128 // (only IE 8 fails this test)
129 div.innerHTML = '<table><tr><td style="display:none"></td><td>t</td></tr></table>';
130 jQuery.support.reliableHiddenOffsets = div.getElementsByTagName('td')[0].offsetHeight === 0;
133 document.body.removeChild( div ).style.display = 'none';
137 // Technique from Juriy Zaytsev
138 // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
139 var eventSupported = function( eventName ) {
140 var el = document.createElement("div");
141 eventName = "on" + eventName;
143 var isSupported = (eventName in el);
144 if ( !isSupported ) {
145 el.setAttribute(eventName, "return;");
146 isSupported = typeof el[eventName] === "function";
153 jQuery.support.submitBubbles = eventSupported("submit");
154 jQuery.support.changeBubbles = eventSupported("change");
156 // release memory in IE
157 root = script = div = all = a = null;
162 "class": "className",
163 readonly: "readOnly",
164 maxlength: "maxLength",
165 cellspacing: "cellSpacing",
168 tabindex: "tabIndex",
170 frameborder: "frameBorder"