We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f776e5 commit 86e62d8Copy full SHA for 86e62d8
test/unit/selector.js
@@ -166,8 +166,8 @@ test("attributes", function() {
166
t( "Attribute Equals Number", "#qunit-fixture li[tabIndex=-1]", ["foodWithNegativeTabIndex"] );
167
168
document.getElementById("anchor2").href = "#2";
169
- t( "href Attribute", "p a[href^=#]", ["anchor2"] );
170
- t( "href Attribute", "p a[href*=#]", ["simon1", "anchor2"] );
+ t( "href Attribute", "p a[href^='#']", ["anchor2"] );
+ t( "href Attribute", "p a[href*='#']", ["simon1", "anchor2"] );
171
172
t( "for Attribute", "form label[for]", ["label-for"] );
173
t( "for Attribute in form", "#form [for=action]", ["label-for"] );
0 commit comments