Skip to content
Permalink
Browse files
No commit message
  • Loading branch information
jzaefferer committed Dec 19, 2006
1 parent 0e540ec commit 42785b1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
@@ -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"]);
@@ -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

0 comments on commit 42785b1

Please sign in to comment.