From: Rick Waldron Date: Mon, 31 Dec 2012 18:23:26 +0000 (-0500) Subject: Resolved conflict X-Git-Tag: 2.0.0b1~60^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d50c18e61f1e498b21e64fd64f847463959061a1;p=jquery.git Resolved conflict --- diff --git a/src/attributes.js b/src/attributes.js index 7f156f2c3..ec3984330 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -573,46 +573,6 @@ if ( !getSetAttribute ) { }); } - -// Some attributes require a special call on IE -// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !jQuery.support.hrefNormalized ) { - jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { - jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { - get: function( elem ) { - var ret = elem.getAttribute( name, 2 ); - return ret == null ? undefined : ret; - } - }); - }); - - // href/src property should get the full normalized URL (#10299/#12915) - jQuery.each([ "href", "src" ], function( i, name ) { - jQuery.propHooks[ name ] = { - get: function( elem ) { - return elem.getAttribute( name, 4 ); - } - }; - }); -} - -<<<<<<< HEAD -if ( !jQuery.support.style ) { - jQuery.attrHooks.style = { - get: function( elem ) { - // Return undefined in the case of empty string - // Note: IE uppercases css property names, but if we were to .toLowerCase() - // .cssText, that would destroy case senstitivity in URL's, like in "background" - return elem.style.cssText || undefined; - }, - set: function( elem, value ) { - return ( elem.style.cssText = value + "" ); - } - }; -} - -======= ->>>>>>> 2.0: Remove style->cssText attroproties fallback // Radios and checkboxes getter/setter if ( !jQuery.support.checkOn ) { jQuery.each([ "radio", "checkbox" ], function() { diff --git a/src/support.js b/src/support.js index 4c4b6ea77..9d8ed46da 100644 --- a/src/support.js +++ b/src/support.js @@ -5,7 +5,7 @@ jQuery.support = (function() { // Setup div.setAttribute( "className", "t" ); - div.innerHTML = "
a"; + div.innerHTML = "
a"; // Support tests won't run in some limited or non-browser environments all = div.getElementsByTagName("*"); @@ -35,10 +35,6 @@ jQuery.support = (function() { // This requires a wrapper element in IE htmlSerialize: !!div.getElementsByTagName("link").length, - // Make sure that URLs aren't manipulated - // (IE normalizes it by default) - hrefNormalized: a.getAttribute("href") === "/a", - // Make sure that element opacity exists // (IE uses filter instead) // Use a regex to work around a WebKit issue. See #5145