aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build/test/index.html2
-rw-r--r--src/jquery/jquery.js4
2 files changed, 5 insertions, 1 deletions
diff --git a/build/test/index.html b/build/test/index.html
index 9ee1d4e4e..74539eff5 100644
--- a/build/test/index.html
+++ b/build/test/index.html
@@ -52,7 +52,7 @@
<option id="option1c" value="2">2</option>
<option id="option1d" value="3">3</option>
</select>
- <select name="select1" id="select2">
+ <select name="select2" id="select2">
<option id="option2a" value="">Nothing</option>
<option id="option2b" value="1">1</option>
<option id="option2c" value="2">2</option>
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js
index 17e2a66a1..97038331c 100644
--- a/src/jquery/jquery.js
+++ b/src/jquery/jquery.js
@@ -1662,6 +1662,10 @@ jQuery.extend({
* @test t( "All Children of ID", "#foo/*", ["sndp", "en", "sap"] );
* @test t( "All Children of ID with no children", "#firstUL/*", [] );
*
+ * @test t( ":not() Existing attribute", "input:not([@name])", ["text2", "check2"]);
+ * @test t( ":not() Equals attribute", "select:not([@name=select1])", ["select2", "select3"]);
+ * @test t( ":not() Equals quoted attribute", "select:not([@name='select1'])", ["select2", "select3"]);
+ *
* @name $.find
* @type Array<Element>
* @private