2009-12-22 01:58:13 +01:00
|
|
|
(function() {
|
2008-12-22 00:06:42 +01:00
|
|
|
|
|
|
|
jQuery.support = {};
|
|
|
|
|
|
|
|
var root = document.documentElement,
|
|
|
|
script = document.createElement("script"),
|
|
|
|
div = document.createElement("div"),
|
2009-12-03 19:59:19 +01:00
|
|
|
id = "script" + now();
|
2008-12-22 00:06:42 +01:00
|
|
|
|
|
|
|
div.style.display = "none";
|
2009-12-22 21:46:54 +01:00
|
|
|
div.innerHTML = " <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";
|
2008-12-22 00:06:42 +01:00
|
|
|
|
|
|
|
var all = div.getElementsByTagName("*"),
|
|
|
|
a = div.getElementsByTagName("a")[0];
|
|
|
|
|
|
|
|
// Can't get basic test support
|
|
|
|
if ( !all || !all.length || !a ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
jQuery.support = {
|
|
|
|
// IE strips leading whitespace when .innerHTML is used
|
2009-12-22 00:02:02 +01:00
|
|
|
leadingWhitespace: div.firstChild.nodeType === 3,
|
2009-03-23 02:55:17 +01:00
|
|
|
|
2008-12-22 00:06:42 +01:00
|
|
|
// Make sure that tbody elements aren't automatically inserted
|
|
|
|
// IE will insert them into empty tables
|
|
|
|
tbody: !div.getElementsByTagName("tbody").length,
|
2009-03-23 02:55:17 +01:00
|
|
|
|
2008-12-22 00:06:42 +01:00
|
|
|
// Make sure that link elements get serialized correctly by innerHTML
|
|
|
|
// This requires a wrapper element in IE
|
|
|
|
htmlSerialize: !!div.getElementsByTagName("link").length,
|
2009-03-23 02:55:17 +01:00
|
|
|
|
2008-12-22 00:06:42 +01:00
|
|
|
// Get the style information from getAttribute
|
|
|
|
// (IE uses .cssText insted)
|
|
|
|
style: /red/.test( a.getAttribute("style") ),
|
2009-03-23 02:55:17 +01:00
|
|
|
|
2008-12-22 00:06:42 +01:00
|
|
|
// Make sure that URLs aren't manipulated
|
|
|
|
// (IE normalizes it by default)
|
|
|
|
hrefNormalized: a.getAttribute("href") === "/a",
|
2009-03-23 02:55:17 +01:00
|
|
|
|
2008-12-22 00:06:42 +01:00
|
|
|
// Make sure that element opacity exists
|
|
|
|
// (IE uses filter instead)
|
2009-12-10 05:37:14 +01:00
|
|
|
// Use a regex to work around a WebKit issue. See #5145
|
|
|
|
opacity: /^0.55$/.test( a.style.opacity ),
|
2009-03-23 02:55:17 +01:00
|
|
|
|
2008-12-22 00:06:42 +01:00
|
|
|
// Verify style float existence
|
|
|
|
// (IE uses styleFloat instead of cssFloat)
|
|
|
|
cssFloat: !!a.style.cssFloat,
|
|
|
|
|
2009-12-22 08:00:46 +01:00
|
|
|
// Make sure that if no value is specified for a checkbox
|
|
|
|
// that it defaults to "on".
|
|
|
|
// (WebKit defaults to "" instead)
|
|
|
|
checkOn: div.getElementsByTagName("input")[0].value === "on",
|
|
|
|
|
2009-12-22 21:46:54 +01:00
|
|
|
// Make sure that a selected-by-default option has a working selected property.
|
|
|
|
// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)
|
|
|
|
optSelected: document.createElement("select").appendChild( document.createElement("option") ).selected,
|
|
|
|
|
2010-02-13 09:14:00 +01:00
|
|
|
parentNode: div.removeChild( div.appendChild( document.createElement("div") ) ).parentNode === null,
|
|
|
|
|
2008-12-22 00:06:42 +01:00
|
|
|
// Will be defined later
|
2010-02-13 12:32:20 +01:00
|
|
|
deleteExpando: true,
|
2010-01-26 00:43:33 +01:00
|
|
|
checkClone: false,
|
2008-12-22 00:06:42 +01:00
|
|
|
scriptEval: false,
|
2009-01-11 17:17:20 +01:00
|
|
|
noCloneEvent: true,
|
|
|
|
boxModel: null
|
2008-12-22 00:06:42 +01:00
|
|
|
};
|
2009-03-23 02:55:17 +01:00
|
|
|
|
2008-12-22 00:06:42 +01:00
|
|
|
script.type = "text/javascript";
|
|
|
|
try {
|
|
|
|
script.appendChild( document.createTextNode( "window." + id + "=1;" ) );
|
2009-12-22 01:58:13 +01:00
|
|
|
} catch(e) {}
|
2008-12-22 00:06:42 +01:00
|
|
|
|
|
|
|
root.insertBefore( script, root.firstChild );
|
2009-03-23 02:55:17 +01:00
|
|
|
|
2008-12-22 00:06:42 +01:00
|
|
|
// Make sure that the execution of code works by injecting a script
|
|
|
|
// tag with appendChild/createTextNode
|
|
|
|
// (IE doesn't support this, fails, and uses .text instead)
|
|
|
|
if ( window[ id ] ) {
|
|
|
|
jQuery.support.scriptEval = true;
|
|
|
|
delete window[ id ];
|
|
|
|
}
|
|
|
|
|
|
|
|
root.removeChild( script );
|
|
|
|
|
|
|
|
if ( div.attachEvent && div.fireEvent ) {
|
2009-12-22 01:58:13 +01:00
|
|
|
div.attachEvent("onclick", function click() {
|
2008-12-22 00:06:42 +01:00
|
|
|
// Cloning a node shouldn't copy over any
|
|
|
|
// bound event handlers (IE does this)
|
|
|
|
jQuery.support.noCloneEvent = false;
|
2009-02-26 19:00:41 +01:00
|
|
|
div.detachEvent("onclick", click);
|
2008-12-22 00:06:42 +01:00
|
|
|
});
|
|
|
|
div.cloneNode(true).fireEvent("onclick");
|
|
|
|
}
|
|
|
|
|
2010-01-26 00:43:33 +01:00
|
|
|
div = document.createElement("div");
|
|
|
|
div.innerHTML = "<input type='radio' name='radiotest' checked='checked'/>";
|
|
|
|
|
|
|
|
var fragment = document.createDocumentFragment();
|
|
|
|
fragment.appendChild( div.firstChild );
|
|
|
|
|
|
|
|
// WebKit doesn't clone checked state correctly in fragments
|
|
|
|
jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked;
|
|
|
|
|
2009-01-11 17:17:20 +01:00
|
|
|
// Figure out if the W3C box model works as expected
|
|
|
|
// document.body must exist before we can do this
|
2009-12-22 01:58:13 +01:00
|
|
|
jQuery(function() {
|
2009-01-11 17:17:20 +01:00
|
|
|
var div = document.createElement("div");
|
2009-02-07 18:15:01 +01:00
|
|
|
div.style.width = div.style.paddingLeft = "1px";
|
2009-01-11 17:17:20 +01:00
|
|
|
|
|
|
|
document.body.appendChild( div );
|
|
|
|
jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
|
2009-02-07 18:15:01 +01:00
|
|
|
document.body.removeChild( div ).style.display = 'none';
|
2010-02-13 12:32:20 +01:00
|
|
|
|
|
|
|
// Test to see if it's possible to delete an expando from an element
|
|
|
|
// Fails in Internet Explorer
|
|
|
|
try {
|
|
|
|
div.test = 1;
|
|
|
|
delete doc.test;
|
|
|
|
|
|
|
|
} catch(e) {
|
|
|
|
jQuery.support.deleteExpando = false;
|
|
|
|
}
|
|
|
|
|
2009-04-22 22:00:30 +02:00
|
|
|
div = null;
|
2009-01-11 17:17:20 +01:00
|
|
|
});
|
2009-04-21 20:46:39 +02:00
|
|
|
|
2009-12-04 17:28:50 +01:00
|
|
|
// Technique from Juriy Zaytsev
|
|
|
|
// http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
|
|
|
|
var eventSupported = function( eventName ) {
|
|
|
|
var el = document.createElement("div");
|
|
|
|
eventName = "on" + eventName;
|
|
|
|
|
|
|
|
var isSupported = (eventName in el);
|
|
|
|
if ( !isSupported ) {
|
|
|
|
el.setAttribute(eventName, "return;");
|
|
|
|
isSupported = typeof el[eventName] === "function";
|
|
|
|
}
|
|
|
|
el = null;
|
|
|
|
|
|
|
|
return isSupported;
|
|
|
|
};
|
|
|
|
|
|
|
|
jQuery.support.submitBubbles = eventSupported("submit");
|
|
|
|
jQuery.support.changeBubbles = eventSupported("change");
|
|
|
|
|
2009-04-21 20:46:39 +02:00
|
|
|
// release memory in IE
|
2009-04-22 22:00:30 +02:00
|
|
|
root = script = div = all = a = null;
|
2008-12-22 00:06:42 +01:00
|
|
|
})();
|
|
|
|
|
|
|
|
jQuery.props = {
|
|
|
|
"for": "htmlFor",
|
|
|
|
"class": "className",
|
|
|
|
readonly: "readOnly",
|
|
|
|
maxlength: "maxLength",
|
|
|
|
cellspacing: "cellSpacing",
|
2009-01-05 18:34:42 +01:00
|
|
|
rowspan: "rowSpan",
|
2009-05-16 16:45:46 +02:00
|
|
|
colspan: "colSpan",
|
2009-11-11 21:11:58 +01:00
|
|
|
tabindex: "tabIndex",
|
|
|
|
usemap: "useMap",
|
|
|
|
frameborder: "frameBorder"
|
2008-12-29 23:05:02 +01:00
|
|
|
};
|