From: Jörn Zaefferer Date: Tue, 19 Dec 2006 18:52:45 +0000 (+0000) Subject: (no commit message) X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=42785b1c1dbdb51e798de90720a164731f495e44;p=jquery.git --- diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index 25fd4dd..7dd7a16 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -379,7 +379,7 @@ test("expressions - child and adjacent", function() { }); test("expressions - attributes", function() { - expect(16); + expect(19); t( "Attribute Exists", "a[@title]", ["google"] ); t( "Attribute Exists", "*[@title]", ["google"] ); t( "Attribute Exists", "[@title]", ["google"] ); @@ -395,6 +395,10 @@ test("expressions - attributes", function() { t( "Attribute Ends With", "a[@href $= 'org/']", ["mark"] ); t( "Attribute Contains", "a[@href *= 'google']", ["google","groups"] ); + t("Select options via [@selected]", "#select1 option[@selected]", ["option1a"] ); + t("Select options via [@selected]", "#select2 option[@selected]", ["option2d"] ); + t("Select options via [@selected]", "#select3 option[@selected]", ["option3b", "option3c"] ); + t( "Grouped Form Elements", "input[@name='foo[bar]']", ["hidden2"] ); t( ":not() Existing attribute", "select:not([@multiple])", ["select1", "select2"]); diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index d3ed8c6..8cffb8e 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1418,7 +1418,7 @@ jQuery.extend({ enabled: "!a.disabled", disabled: "a.disabled", checked: "a.checked", - selected: "a.selected || jQuery.attr(a, 'selected')", + selected: "a.selected", // Form elements text: "a.type=='text'", @@ -1570,7 +1570,8 @@ jQuery.extend({ value: "value", disabled: "disabled", checked: "checked", - readonly: "readOnly" + readonly: "readOnly", + selected: "selected" }; // IE actually uses filters for opacity ... elem is actually elem.style