From: Timmy Willison Date: Mon, 17 Dec 2012 23:15:51 +0000 (-0500) Subject: 2.0: Remove support.optSelected X-Git-Tag: 2.0.0b1~60^2~4 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0b91e836a30aa03a18e5dfb735eca56cc45c16fb;p=jquery.git 2.0: Remove support.optSelected --- diff --git a/src/attributes.js b/src/attributes.js index 8e1934888..f94752368 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -610,26 +610,6 @@ if ( !jQuery.support.style ) { }; } -// Safari mis-reports the default selected property of an option -// Accessing the parent's selectedIndex property fixes it -if ( !jQuery.support.optSelected ) { - jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { - get: function( elem ) { - var parent = elem.parentNode; - - if ( parent ) { - parent.selectedIndex; - - // Make sure that it also works with optgroups, see #5701 - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - return null; - } - }); -} - // 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 d4e4ea3da..d1a8d3d38 100644 --- a/src/support.js +++ b/src/support.js @@ -55,10 +55,6 @@ jQuery.support = (function() { // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) checkOn: !!input.value, - // 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: opt.selected, - // Makes sure cloning an html5 element does not cause problems // Where outerHTML is undefined, this still works html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>",