diff options
Diffstat (limited to 'test/unit/selector.js')
-rw-r--r-- | test/unit/selector.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js index e3830d9bd..12c26f1cb 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -30,7 +30,7 @@ test("id", function() { t( "ID Selector w/ Element", "body#body", ["body"] ); t( "ID Selector w/ Element", "ul#first", [] ); t( "ID selector with existing ID descendant", "#firstp #simon1", ["simon1"] ); - t( "ID selector with non-existant descendant", "#firstp #foobar", [] ); + t( "ID selector with non-existent descendant", "#firstp #foobar", [] ); t( "ID selector using UTF8", "#台北Táiběi", ["台北Táiběi"] ); t( "Multiple ID selectors using UTF8", "#台北Táiběi, #台北", ["台北Táiběi","台北"] ); t( "Descendant ID selector using UTF8", "div #台北", ["台北"] ); @@ -55,7 +55,7 @@ test("id", function() { t( "ID Selector on Form with an input that has a name of 'id'", "#lengthtest", ["lengthtest"] ); - t( "ID selector with non-existant ancestor", "#asdfasdf #foobar", [] ); // bug #986 + t( "ID selector with non-existent ancestor", "#asdfasdf #foobar", [] ); // bug #986 t( "Underscore ID", "#types_all", ["types_all"] ); t( "Dash ID", "#qunit-fixture", ["qunit-fixture"] ); @@ -138,7 +138,7 @@ test( "child and adjacent", function() { nothiddendiv = document.getElementById("nothiddendiv"); - t( "Non-existant ancestors", ".fototab > .thumbnails > a", [] ); + t( "Non-existent ancestors", ".fototab > .thumbnails > a", [] ); }); test("attributes", function() { |