mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Adding another test for an issue in Gecko's matchesSelector implementation. Fixes #7243.
This commit is contained in:
parent
0174518a49
commit
9be7461c3c
@ -225,7 +225,7 @@ test("child and adjacent", function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test("attributes", function() {
|
test("attributes", function() {
|
||||||
expect(34);
|
expect(35);
|
||||||
t( "Attribute Exists", "a[title]", ["google"] );
|
t( "Attribute Exists", "a[title]", ["google"] );
|
||||||
t( "Attribute Exists", "*[title]", ["google"] );
|
t( "Attribute Exists", "*[title]", ["google"] );
|
||||||
t( "Attribute Exists", "[title]", ["google"] );
|
t( "Attribute Exists", "[title]", ["google"] );
|
||||||
@ -263,6 +263,9 @@ test("attributes", function() {
|
|||||||
t( "Attribute Contains", "a[href *= 'google']", ["google","groups"] );
|
t( "Attribute Contains", "a[href *= 'google']", ["google","groups"] );
|
||||||
t( "Attribute Is Not Equal", "#ap a[hreflang!='en']", ["google","groups","anchor1"] );
|
t( "Attribute Is Not Equal", "#ap a[hreflang!='en']", ["google","groups","anchor1"] );
|
||||||
|
|
||||||
|
var opt = document.getElementById("option1a");
|
||||||
|
ok( (window.Sizzle || window.jQuery.find).matchesSelector( opt, "[id*=option1][type!=checkbox]" ), "Attribute Is Not Equal Matches" );
|
||||||
|
|
||||||
t("Empty values", "#select1 option[value='']", ["option1a"]);
|
t("Empty values", "#select1 option[value='']", ["option1a"]);
|
||||||
t("Empty values", "#select1 option[value!='']", ["option1b","option1c","option1d"]);
|
t("Empty values", "#select1 option[value!='']", ["option1b","option1c","option1d"]);
|
||||||
|
|
||||||
@ -320,10 +323,13 @@ test("pseudo - child", function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test("pseudo - misc", function() {
|
test("pseudo - misc", function() {
|
||||||
expect(6);
|
expect(7);
|
||||||
|
|
||||||
t( "Headers", ":header", ["qunit-header", "qunit-banner", "qunit-userAgent"] );
|
t( "Headers", ":header", ["qunit-header", "qunit-banner", "qunit-userAgent"] );
|
||||||
t( "Has Children - :has()", "p:has(a)", ["firstp","ap","en","sap"] );
|
t( "Has Children - :has()", "p:has(a)", ["firstp","ap","en","sap"] );
|
||||||
|
|
||||||
|
var select = document.getElementById("select1");
|
||||||
|
ok( (window.Sizzle || window.jQuery.find).matchesSelector( select, ":has(option)" ), "Has Option Matches" );
|
||||||
|
|
||||||
t( "Text Contains", "a:contains(Google)", ["google","groups"] );
|
t( "Text Contains", "a:contains(Google)", ["google","groups"] );
|
||||||
t( "Text Contains", "a:contains(Google Groups)", ["groups"] );
|
t( "Text Contains", "a:contains(Google Groups)", ["groups"] );
|
||||||
|
Loading…
Reference in New Issue
Block a user