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
70 inlineBlockNeedsLayout: false,
71 shrinkWrapBlocks: false,
72 reliableHiddenOffsets: true
75 // Make sure that the options inside disabled selects aren't marked as disabled
76 // (WebKit marks them as diabled)
77 select.disabled = true;
78 jQuery.support.optDisabled = !opt.disabled;
80 script.type = "text/javascript";
82 script.appendChild( document.createTextNode( "window." + id + "=1;" ) );
85 root.insertBefore( script, root.firstChild );
87 // Make sure that the execution of code works by injecting a script
88 // tag with appendChild/createTextNode
89 // (IE doesn't support this, fails, and uses .text instead)
91 jQuery.support.scriptEval = true;
95 // Test to see if it's possible to delete an expando from an element
96 // Fails in Internet Explorer
101 jQuery.support.deleteExpando = false;
104 root.removeChild( script );
106 if ( div.attachEvent && div.fireEvent ) {
107 div.attachEvent("onclick", function click() {
108 // Cloning a node shouldn't copy over any
109 // bound event handlers (IE does this)
110 jQuery.support.noCloneEvent = false;
111 div.detachEvent("onclick", click);
113 div.cloneNode(true).fireEvent("onclick");
116 div = document.createElement("div");
117 div.innerHTML = "<input type='radio' name='radiotest' checked='checked'/>";
119 var fragment = document.createDocumentFragment();
120 fragment.appendChild( div.firstChild );
122 // WebKit doesn't clone checked state correctly in fragments
123 jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked;
125 // Figure out if the W3C box model works as expected
126 // document.body must exist before we can do this
128 var div = document.createElement("div");
129 div.style.width = div.style.paddingLeft = "1px";
131 document.body.appendChild( div );
132 jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
134 if ( "zoom" in div.style ) {
135 // Check if natively block-level elements act like inline-block
136 // elements when setting their display to 'inline' and giving
138 // (IE < 8 does this)
139 div.style.display = "inline";
141 jQuery.support.inlineBlockNeedsLayout = div.offsetWidth === 2;
143 // Check if elements with layout shrink-wrap their children
145 div.style.display = "";
146 div.innerHTML = "<div style='width:4px;'></div>";
147 jQuery.support.shrinkWrapBlocks = div.offsetWidth !== 2;
150 div.innerHTML = "<table><tr><td style='padding:0;display:none'></td><td>t</td></tr></table>";
151 var tds = div.getElementsByTagName("td");
153 // Check if table cells still have offsetWidth/Height when they are set
154 // to display:none and there are still other visible table cells in a
155 // table row; if so, offsetWidth/Height are not reliable for use when
156 // determining if an element has been hidden directly using
157 // display:none (it is still safe to use offsets if a parent element is
158 // hidden; don safety goggles and see bug #4512 for more information).
159 // (only IE 8 fails this test)
160 jQuery.support.reliableHiddenOffsets = tds[0].offsetHeight === 0;
162 tds[0].style.display = "";
163 tds[1].style.display = "none";
165 // Check if empty table cells still have offsetWidth/Height
166 // (IE < 8 fail this test)
167 jQuery.support.reliableHiddenOffsets = jQuery.support.reliableHiddenOffsets && tds[0].offsetHeight === 0;
170 document.body.removeChild( div ).style.display = "none";
174 // Technique from Juriy Zaytsev
175 // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
176 var eventSupported = function( eventName ) {
177 var el = document.createElement("div");
178 eventName = "on" + eventName;
180 var isSupported = (eventName in el);
181 if ( !isSupported ) {
182 el.setAttribute(eventName, "return;");
183 isSupported = typeof el[eventName] === "function";
190 jQuery.support.submitBubbles = eventSupported("submit");
191 jQuery.support.changeBubbles = eventSupported("change");
193 // release memory in IE
194 root = script = div = all = a = null;