2019-02-18 18:02:38 +00:00
QUnit . module ( "selector" , { afterEach : moduleTeardown } ) ;
2012-05-29 16:40:13 +00:00
2011-09-12 23:40:14 +00:00
/ * *
2012-05-28 16:18:40 +00:00
* This test page is for selector tests that require jQuery in order to do the selection
2011-09-12 23:40:14 +00:00
* /
2015-11-10 18:26:15 +00:00
QUnit . test ( "element" , function ( assert ) {
2015-08-16 03:45:28 +00:00
assert . expect ( 7 ) ;
2012-05-28 16:18:40 +00:00
2015-08-16 06:59:58 +00:00
var fixture = document . getElementById ( "qunit-fixture" ) ;
2012-12-11 00:07:07 +00:00
2015-08-16 06:59:58 +00:00
assert . deepEqual ( jQuery ( "p" , fixture ) . get ( ) , q ( "firstp" , "ap" , "sndp" , "en" , "sap" , "first" ) , "Finding elements with a Node context." ) ;
assert . deepEqual ( jQuery ( "p" , "#qunit-fixture" ) . get ( ) , q ( "firstp" , "ap" , "sndp" , "en" , "sap" , "first" ) , "Finding elements with a selector context." ) ;
assert . deepEqual ( jQuery ( "p" , jQuery ( "#qunit-fixture" ) ) . get ( ) , q ( "firstp" , "ap" , "sndp" , "en" , "sap" , "first" ) , "Finding elements with a jQuery object context." ) ;
assert . deepEqual ( jQuery ( "#qunit-fixture" ) . find ( "p" ) . get ( ) , q ( "firstp" , "ap" , "sndp" , "en" , "sap" , "first" ) , "Finding elements with a context via .find()." ) ;
2012-05-28 16:18:40 +00:00
2022-01-12 22:23:10 +00:00
assert . ok ( jQuery ( "#length" ) . length , "<input name=\"length\"> cannot be found under IE, see trac-945" ) ;
assert . ok ( jQuery ( "#lengthtest input" ) . length , "<input name=\"length\"> cannot be found under IE, see trac-945" ) ;
2012-05-28 18:35:01 +00:00
2022-01-12 22:23:10 +00:00
// trac-7533
2015-08-16 06:59:58 +00:00
assert . equal ( jQuery ( "<div id=\"A'B~C.D[E]\"><p>foo</p></div>" ) . find ( "p" ) . length , 1 , "Find where context root is a node and has an ID with CSS3 meta characters" ) ;
} ) ;
2012-05-28 16:18:40 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "id" , function ( assert ) {
2015-08-16 03:45:28 +00:00
assert . expect ( 26 ) ;
2014-02-24 18:05:16 +00:00
var a ;
2015-09-08 00:26:29 +00:00
assert . t ( "ID Selector" , "#body" , [ "body" ] ) ;
assert . t ( "ID Selector w/ Element" , "body#body" , [ "body" ] ) ;
assert . t ( "ID Selector w/ Element" , "ul#first" , [ ] ) ;
assert . t ( "ID selector with existing ID descendant" , "#firstp #simon1" , [ "simon1" ] ) ;
assert . t ( "ID selector with non-existent descendant" , "#firstp #foobar" , [ ] ) ;
assert . t ( "ID selector using UTF8" , "#台北Táiběi" , [ "台北Táiběi" ] ) ;
2016-05-10 09:12:28 +00:00
assert . t ( "Multiple ID selectors using UTF8" , "#台北Táiběi, #台北" , [ "台北Táiběi" , "台北" ] ) ;
2015-09-08 00:26:29 +00:00
assert . t ( "Descendant ID selector using UTF8" , "div #台北" , [ "台北" ] ) ;
assert . t ( "Child ID selector using UTF8" , "form > #台北" , [ "台北" ] ) ;
assert . t ( "Escaped ID" , "#foo\\:bar" , [ "foo:bar" ] ) ;
assert . t ( "Escaped ID" , "#test\\.foo\\[5\\]bar" , [ "test.foo[5]bar" ] ) ;
assert . t ( "Descendant escaped ID" , "div #foo\\:bar" , [ "foo:bar" ] ) ;
assert . t ( "Descendant escaped ID" , "div #test\\.foo\\[5\\]bar" , [ "test.foo[5]bar" ] ) ;
assert . t ( "Child escaped ID" , "form > #foo\\:bar" , [ "foo:bar" ] ) ;
assert . t ( "Child escaped ID" , "form > #test\\.foo\\[5\\]bar" , [ "test.foo[5]bar" ] ) ;
2022-01-12 22:23:10 +00:00
assert . t ( "ID Selector, child ID present" , "#form > #radio1" , [ "radio1" ] ) ; // bug trac-267
2015-09-08 00:26:29 +00:00
assert . t ( "ID Selector, not an ancestor ID" , "#form #first" , [ ] ) ;
assert . t ( "ID Selector, not a child ID" , "#form > #option1a" , [ ] ) ;
assert . t ( "All Children of ID" , "#foo > *" , [ "sndp" , "en" , "sap" ] ) ;
assert . t ( "All Children of ID with no children" , "#firstUL > *" , [ ] ) ;
2014-02-24 18:05:16 +00:00
2015-08-16 06:59:58 +00:00
a = jQuery ( "<a id='backslash\\foo'></a>" ) . appendTo ( "#qunit-fixture" ) ;
2015-09-08 00:26:29 +00:00
assert . t ( "ID Selector contains backslash" , "#backslash\\\\foo" , [ "backslash\\foo" ] ) ;
2014-02-24 18:05:16 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "ID Selector on Form with an input that has a name of 'id'" , "#lengthtest" , [ "lengthtest" ] ) ;
2014-02-24 18:05:16 +00:00
2022-01-12 22:23:10 +00:00
assert . t ( "ID selector with non-existent ancestor" , "#asdfasdf #foobar" , [ ] ) ; // bug trac-986
2014-02-24 18:05:16 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Underscore ID" , "#types_all" , [ "types_all" ] ) ;
assert . t ( "Dash ID" , "#qunit-fixture" , [ "qunit-fixture" ] ) ;
2014-02-24 18:05:16 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "ID with weird characters in it" , "#name\\+value" , [ "name+value" ] ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2014-02-24 18:05:16 +00:00
2015-11-10 18:26:15 +00:00
QUnit . test ( "class" , function ( assert ) {
2015-08-16 03:45:28 +00:00
assert . expect ( 4 ) ;
2012-05-28 16:18:40 +00:00
2015-08-16 06:59:58 +00:00
assert . deepEqual ( jQuery ( ".blog" , document . getElementsByTagName ( "p" ) ) . get ( ) , q ( "mark" , "simon" ) , "Finding elements with a context." ) ;
assert . deepEqual ( jQuery ( ".blog" , "p" ) . get ( ) , q ( "mark" , "simon" ) , "Finding elements with a context." ) ;
assert . deepEqual ( jQuery ( ".blog" , jQuery ( "p" ) ) . get ( ) , q ( "mark" , "simon" ) , "Finding elements with a context." ) ;
assert . deepEqual ( jQuery ( "p" ) . find ( ".blog" ) . get ( ) , q ( "mark" , "simon" ) , "Finding elements with a context." ) ;
} ) ;
2012-05-28 16:18:40 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "name" , function ( assert ) {
2015-08-16 03:45:28 +00:00
assert . expect ( 5 ) ;
2014-02-24 18:05:16 +00:00
var form ;
2015-09-08 00:26:29 +00:00
assert . t ( "Name selector" , "input[name=action]" , [ "text1" ] ) ;
assert . t ( "Name selector with single quotes" , "input[name='action']" , [ "text1" ] ) ;
assert . t ( "Name selector with double quotes" , "input[name=\"action\"]" , [ "text1" ] ) ;
2014-02-24 18:05:16 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Name selector for grouped input" , "input[name='types[]']" , [ "types_all" , "types_anime" , "types_movie" ] ) ;
2014-02-24 18:05:16 +00:00
2015-08-16 06:59:58 +00:00
form = jQuery ( "<form><input name='id'/></form>" ) . appendTo ( "body" ) ;
assert . equal ( jQuery ( "input" , form [ 0 ] ) . length , 1 , "Make sure that rooted queries on forms (with possible expandos) work." ) ;
2014-02-24 18:05:16 +00:00
form . remove ( ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2014-02-24 18:05:16 +00:00
2015-08-16 03:45:28 +00:00
QUnit . test ( "selectors with comma" , function ( assert ) {
assert . expect ( 4 ) ;
2014-02-26 23:13:26 +00:00
2020-03-16 20:49:29 +00:00
var fixture = jQuery ( "<div><h2><span></span></h2><div><p><span></span></p><p></p></div></div>" ) ;
2014-02-26 23:13:26 +00:00
2015-08-16 03:45:28 +00:00
assert . equal ( fixture . find ( "h2, div p" ) . filter ( "p" ) . length , 2 , "has to find two <p>" ) ;
assert . equal ( fixture . find ( "h2, div p" ) . filter ( "h2" ) . length , 1 , "has to find one <h2>" ) ;
assert . equal ( fixture . find ( "h2 , div p" ) . filter ( "p" ) . length , 2 , "has to find two <p>" ) ;
assert . equal ( fixture . find ( "h2 , div p" ) . filter ( "h2" ) . length , 1 , "has to find one <h2>" ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2014-02-26 23:13:26 +00:00
2015-08-16 03:45:28 +00:00
QUnit . test ( "child and adjacent" , function ( assert ) {
assert . expect ( 27 ) ;
2014-02-26 23:32:02 +00:00
2016-05-10 09:12:28 +00:00
assert . t ( "Child" , "p > a" , [ "simon1" , "google" , "groups" , "mark" , "yahoo" , "simon" ] ) ;
assert . t ( "Child" , "p> a" , [ "simon1" , "google" , "groups" , "mark" , "yahoo" , "simon" ] ) ;
assert . t ( "Child" , "p >a" , [ "simon1" , "google" , "groups" , "mark" , "yahoo" , "simon" ] ) ;
assert . t ( "Child" , "p>a" , [ "simon1" , "google" , "groups" , "mark" , "yahoo" , "simon" ] ) ;
assert . t ( "Child w/ Class" , "p > a.blog" , [ "mark" , "simon" ] ) ;
assert . t ( "All Children" , "code > *" , [ "anchor1" , "anchor2" ] ) ;
assert . selectInFixture ( "All Grandchildren" , "p > * > *" , [ "anchor1" , "anchor2" ] ) ;
assert . t ( "Adjacent" , "p + p" , [ "ap" , "en" , "sap" ] ) ;
2015-09-08 00:26:29 +00:00
assert . t ( "Adjacent" , "p#firstp + p" , [ "ap" ] ) ;
assert . t ( "Adjacent" , "p[lang=en] + p" , [ "sap" ] ) ;
assert . t ( "Adjacent" , "a.GROUPS + code + a" , [ "mark" ] ) ;
assert . t ( "Element Preceded By" , "#groups ~ a" , [ "mark" ] ) ;
assert . t ( "Element Preceded By" , "#length ~ input" , [ "idTest" ] ) ;
assert . t ( "Element Preceded By" , "#siblingfirst ~ em" , [ "siblingnext" , "siblingthird" ] ) ;
assert . t ( "Element Preceded By (multiple)" , "#siblingTest em ~ em ~ em ~ span" , [ "siblingspan" ] ) ;
2015-11-10 18:26:15 +00:00
if ( jQuery . find . compile ) {
assert . t ( "Element Preceded By, Containing" , "#liveHandlerOrder ~ div em:contains('1')" , [ "siblingfirst" ] ) ;
assert . t ( "Combinators are not skipped when mixing general and specific" , "#siblingTest > em:contains('x') + em ~ span" , [ ] ) ;
2022-01-12 22:23:10 +00:00
assert . equal ( jQuery ( "#listWithTabIndex li:eq(2) ~ li" ) . length , 1 , "Find by general sibling combinator (trac-8310)" ) ;
2015-11-10 18:26:15 +00:00
} else {
assert . ok ( "skip" , ":contains not supported in selector-native" ) ;
assert . ok ( "skip" , ":contains not supported in selector-native" ) ;
assert . ok ( "skip" , ":eq not supported in selector-native" ) ;
}
2015-09-08 00:26:29 +00:00
assert . t ( "Multiple combinators selects all levels" , "#siblingTest em *" , [ "siblingchild" , "siblinggrandchild" , "siblinggreatgrandchild" ] ) ;
assert . t ( "Multiple combinators selects all levels" , "#siblingTest > em *" , [ "siblingchild" , "siblinggrandchild" , "siblinggreatgrandchild" ] ) ;
assert . t ( "Multiple sibling combinators doesn't miss general siblings" , "#siblingTest > em:first-child + em ~ span" , [ "siblingspan" ] ) ;
2014-02-26 23:32:02 +00:00
2022-01-12 22:23:10 +00:00
assert . equal ( jQuery ( "#listWithTabIndex" ) . length , 1 , "Parent div for next test is found via ID (trac-8310)" ) ;
assert . equal ( jQuery ( "#__sizzle__" ) . length , 0 , "Make sure the temporary id assigned by sizzle is cleared out (trac-8310)" ) ;
assert . equal ( jQuery ( "#listWithTabIndex" ) . length , 1 , "Parent div for previous test is still found via ID (trac-8310)" ) ;
2014-02-26 23:32:02 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Verify deep class selector" , "div.blah > p > a" , [ ] ) ;
assert . t ( "No element deep selector" , "div.foo > span > a" , [ ] ) ;
assert . t ( "Non-existent ancestors" , ".fototab > .thumbnails > a" , [ ] ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2014-02-26 23:32:02 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "attributes" , function ( assert ) {
2015-08-16 03:45:28 +00:00
assert . expect ( 54 ) ;
2014-02-26 23:13:26 +00:00
2014-02-26 23:33:15 +00:00
var attrbad , div , withScript ;
2012-05-30 17:46:50 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Find elements with a tabindex attribute" , "[tabindex]" , [ "listWithTabIndex" , "foodWithNegativeTabIndex" , "linkWithTabIndex" , "linkWithNegativeTabIndex" , "linkWithNoHrefWithTabIndex" , "linkWithNoHrefWithNegativeTabIndex" ] ) ;
2012-12-08 21:28:10 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Attribute Exists" , "#qunit-fixture a[title]" , [ "google" ] ) ;
assert . t ( "Attribute Exists (case-insensitive)" , "#qunit-fixture a[TITLE]" , [ "google" ] ) ;
assert . t ( "Attribute Exists" , "#qunit-fixture *[title]" , [ "google" ] ) ;
assert . t ( "Attribute Exists" , "#qunit-fixture [title]" , [ "google" ] ) ;
assert . t ( "Attribute Exists" , "#qunit-fixture a[ title ]" , [ "google" ] ) ;
2014-02-26 23:23:10 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Boolean attribute exists" , "#select2 option[selected]" , [ "option2d" ] ) ;
assert . t ( "Boolean attribute equals" , "#select2 option[selected='selected']" , [ "option2d" ] ) ;
2014-02-26 23:23:10 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Attribute Equals" , "#qunit-fixture a[rel='bookmark']" , [ "simon1" ] ) ;
assert . t ( "Attribute Equals" , "#qunit-fixture a[rel='bookmark']" , [ "simon1" ] ) ;
assert . t ( "Attribute Equals" , "#qunit-fixture a[rel=bookmark]" , [ "simon1" ] ) ;
assert . t ( "Attribute Equals" , "#qunit-fixture a[href='http://www.google.com/']" , [ "google" ] ) ;
assert . t ( "Attribute Equals" , "#qunit-fixture a[ rel = 'bookmark' ]" , [ "simon1" ] ) ;
2016-05-10 09:12:28 +00:00
assert . t ( "Attribute Equals Number" , "#qunit-fixture option[value='1']" , [ "option1b" , "option2b" , "option3b" , "option4b" , "option5c" ] ) ;
2015-11-10 18:26:15 +00:00
assert . t ( "Attribute Equals Number" , "#qunit-fixture li[tabIndex='-1']" , [ "foodWithNegativeTabIndex" ] ) ;
2014-02-26 23:23:10 +00:00
2015-08-16 06:59:58 +00:00
document . getElementById ( "anchor2" ) . href = "#2" ;
2015-09-08 00:26:29 +00:00
assert . t ( "href Attribute" , "p a[href^='#']" , [ "anchor2" ] ) ;
assert . t ( "href Attribute" , "p a[href*='#']" , [ "simon1" , "anchor2" ] ) ;
2014-02-26 23:23:10 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "for Attribute" , "form label[for]" , [ "label-for" ] ) ;
assert . t ( "for Attribute in form" , "#form [for=action]" , [ "label-for" ] ) ;
2014-02-26 23:23:10 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Attribute containing []" , "input[name^='foo[']" , [ "hidden2" ] ) ;
assert . t ( "Attribute containing []" , "input[name^='foo[bar]']" , [ "hidden2" ] ) ;
assert . t ( "Attribute containing []" , "input[name*='[bar]']" , [ "hidden2" ] ) ;
assert . t ( "Attribute containing []" , "input[name$='bar]']" , [ "hidden2" ] ) ;
assert . t ( "Attribute containing []" , "input[name$='[bar]']" , [ "hidden2" ] ) ;
assert . t ( "Attribute containing []" , "input[name$='foo[bar]']" , [ "hidden2" ] ) ;
assert . t ( "Attribute containing []" , "input[name*='foo[bar]']" , [ "hidden2" ] ) ;
2014-02-26 23:23:10 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Multiple Attribute Equals" , "#form input[type='radio'], #form input[type='hidden']" , [ "radio1" , "radio2" , "hidden1" ] ) ;
assert . t ( "Multiple Attribute Equals" , "#form input[type='radio'], #form input[type=\"hidden\"]" , [ "radio1" , "radio2" , "hidden1" ] ) ;
assert . t ( "Multiple Attribute Equals" , "#form input[type='radio'], #form input[type=hidden]" , [ "radio1" , "radio2" , "hidden1" ] ) ;
2014-02-26 23:23:10 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Attribute selector using UTF8" , "span[lang=中文]" , [ "台北" ] ) ;
2014-02-26 23:23:10 +00:00
2016-05-10 09:12:28 +00:00
assert . t ( "Attribute Begins With" , "a[href ^= 'http://www']" , [ "google" , "yahoo" ] ) ;
2015-09-08 00:26:29 +00:00
assert . t ( "Attribute Ends With" , "a[href $= 'org/']" , [ "mark" ] ) ;
2016-05-10 09:12:28 +00:00
assert . t ( "Attribute Contains" , "a[href *= 'google']" , [ "google" , "groups" ] ) ;
2015-11-10 18:26:15 +00:00
if ( jQuery . find . compile ) {
2016-05-10 09:12:28 +00:00
assert . t ( "Empty values" , "#select1 option[value!='']" , [ "option1b" , "option1c" , "option1d" ] ) ;
assert . t ( "Attribute Is Not Equal" , "#ap a[hreflang!='en']" , [ "google" , "groups" , "anchor1" ] ) ;
2015-11-10 18:26:15 +00:00
assert . t ( "Select options via :selected" , "#select1 option:selected" , [ "option1a" ] ) ;
assert . t ( "Select options via :selected" , "#select2 option:selected" , [ "option2d" ] ) ;
assert . t ( "Select options via :selected" , "#select3 option:selected" , [ "option3b" , "option3c" ] ) ;
assert . t ( "Select options via :selected" , "select[name='select2'] option:selected" , [ "option2d" ] ) ;
} else {
assert . ok ( "skip" , "!= not supported in selector-native" ) ;
assert . ok ( "skip" , "!= not supported in selector-native" ) ;
assert . ok ( "skip" , ":selected not supported in selector-native" ) ;
assert . ok ( "skip" , ":selected not supported in selector-native" ) ;
assert . ok ( "skip" , ":selected not supported in selector-native" ) ;
assert . ok ( "skip" , ":selected not supported in selector-native" ) ;
}
2014-02-26 23:23:10 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Empty values" , "#select1 option[value='']" , [ "option1a" ] ) ;
2014-02-26 23:23:10 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Grouped Form Elements" , "input[name='foo[bar]']" , [ "hidden2" ] ) ;
2014-02-26 23:23:10 +00:00
2022-01-12 22:23:10 +00:00
// Make sure attribute value quoting works correctly. See jQuery trac-6093; trac-6428; trac-13894
2014-02-26 23:23:10 +00:00
// Use seeded results to bypass querySelectorAll optimizations
attrbad = jQuery (
"<input type='hidden' id='attrbad_space' name='foo bar'/>" +
"<input type='hidden' id='attrbad_dot' value='2' name='foo.baz'/>" +
"<input type='hidden' id='attrbad_brackets' value='2' name='foo[baz]'/>" +
"<input type='hidden' id='attrbad_injection' data-attr='foo_baz']'/>" +
"<input type='hidden' id='attrbad_quote' data-attr='''/>" +
"<input type='hidden' id='attrbad_backslash' data-attr='\'/>" +
"<input type='hidden' id='attrbad_backslash_quote' data-attr='\''/>" +
"<input type='hidden' id='attrbad_backslash_backslash' data-attr='\\'/>" +
"<input type='hidden' id='attrbad_unicode' data-attr='一'/>"
2015-08-16 06:59:58 +00:00
) . appendTo ( "#qunit-fixture" ) . get ( ) ;
2014-02-26 23:23:10 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Underscores don't need escaping" , "input[id=types_all]" , [ "types_all" ] ) ;
2014-02-26 23:23:10 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "input[type=text]" , "#form input[type=text]" , [ "text1" , "text2" , "hidden2" , "name" ] ) ;
assert . t ( "input[type=search]" , "#form input[type=search]" , [ "search" ] ) ;
2014-02-26 23:23:10 +00:00
withScript = supportjQuery ( "<div><span><script src=''/></span></div>" ) ;
2022-01-12 22:23:10 +00:00
assert . ok ( withScript . find ( "#moretests script[src]" ) . has ( "script" ) , "script[src] (jQuery trac-13777)" ) ;
2014-02-26 23:23:10 +00:00
2015-08-16 06:59:58 +00:00
div = document . getElementById ( "foo" ) ;
2015-09-08 00:26:29 +00:00
assert . t ( "Object.prototype property \"constructor\" (negative)" , "[constructor]" , [ ] ) ;
assert . t ( "Gecko Object.prototype property \"watch\" (negative)" , "[watch]" , [ ] ) ;
2014-02-26 23:23:10 +00:00
div . setAttribute ( "constructor" , "foo" ) ;
div . setAttribute ( "watch" , "bar" ) ;
2015-09-08 00:26:29 +00:00
assert . t ( "Object.prototype property \"constructor\"" , "[constructor='foo']" , [ "foo" ] ) ;
assert . t ( "Gecko Object.prototype property \"watch\"" , "[watch='bar']" , [ "foo" ] ) ;
2014-02-26 23:23:10 +00:00
2015-09-08 00:26:29 +00:00
assert . t ( "Value attribute is retrieved correctly" , "input[value=Test]" , [ "text1" , "text2" ] ) ;
2014-02-26 23:23:10 +00:00
2015-11-10 18:26:15 +00:00
if ( jQuery . find . compile ) {
2022-01-12 22:23:10 +00:00
// trac-12600
2015-11-10 18:26:15 +00:00
assert . ok (
jQuery ( "<select value='12600'><option value='option' selected='selected'></option><option value=''></option></select>" )
. prop ( "value" , "option" )
. is ( ":input[value='12600']" ) ,
":input[value=foo] selects select by attribute"
) ;
assert . ok ( jQuery ( "<input type='text' value='12600'/>" ) . prop ( "value" , "option" ) . is ( ":input[value='12600']" ) ,
":input[value=foo] selects text input by attribute"
) ;
} else {
assert . ok ( "skip" , ":input not supported in selector-native" ) ;
assert . ok ( "skip" , ":input not supported in selector-native" ) ;
}
2012-12-08 21:28:10 +00:00
2012-12-09 05:26:24 +00:00
2022-01-12 22:23:10 +00:00
// trac-11115
2015-08-16 06:59:58 +00:00
assert . ok ( jQuery ( "<input type='checkbox' checked='checked'/>" ) . prop ( "checked" , false ) . is ( "[checked]" ) ,
2012-12-09 05:26:24 +00:00
"[checked] selects by attribute (positive)"
) ;
2015-08-16 06:59:58 +00:00
assert . ok ( ! jQuery ( "<input type='checkbox'/>" ) . prop ( "checked" , true ) . is ( "[checked]" ) ,
2012-12-09 05:26:24 +00:00
"[checked] selects by attribute (negative)"
) ;
2015-08-16 06:59:58 +00:00
} ) ;
2012-05-30 17:46:50 +00:00
2015-08-16 06:59:58 +00:00
QUnit . test ( "disconnected nodes" , function ( assert ) {
2015-08-16 03:45:28 +00:00
assert . expect ( 1 ) ;
2013-02-19 04:52:29 +00:00
2020-03-16 20:49:29 +00:00
var $div = jQuery ( "<div></div>" ) ;
2015-08-16 06:59:58 +00:00
assert . equal ( $div . is ( "div" ) , true , "Make sure .is('nodeName') works on disconnected nodes." ) ;
} ) ;
2013-02-19 04:52:29 +00:00
2015-11-10 18:26:15 +00:00
QUnit [ jQuery . find . compile ? "test" : "skip" ] ( "disconnected nodes" , function ( assert ) {
2015-08-16 03:45:28 +00:00
assert . expect ( 3 ) ;
2013-02-19 04:52:29 +00:00
2015-08-16 06:59:58 +00:00
var $opt = jQuery ( "<option></option>" ) . attr ( "value" , "whipit" ) . appendTo ( "#qunit-fixture" ) . detach ( ) ;
2015-08-16 03:45:28 +00:00
assert . equal ( $opt . val ( ) , "whipit" , "option value" ) ;
2015-08-16 06:59:58 +00:00
assert . equal ( $opt . is ( ":selected" ) , false , "unselected option" ) ;
$opt . prop ( "selected" , true ) ;
assert . equal ( $opt . is ( ":selected" ) , true , "selected option" ) ;
} ) ;
2012-05-28 16:18:40 +00:00
2016-04-10 19:42:44 +00:00
testIframe (
2015-08-16 03:45:28 +00:00
"attributes - jQuery.attr" ,
2016-04-08 16:00:17 +00:00
"selector/html5_selector.html" ,
2016-04-10 19:42:44 +00:00
function ( assert , jQuery , window , document ) {
2015-08-16 03:45:28 +00:00
assert . expect ( 38 ) ;
/ * *
* Returns an array of elements with the given IDs
* q & t are added here for the iFrame ' s context
* /
function q ( ) {
var r = [ ] ,
i = 0 ;
for ( ; i < arguments . length ; i ++ ) {
2015-08-16 06:59:58 +00:00
r . push ( document . getElementById ( arguments [ i ] ) ) ;
2015-08-16 03:45:28 +00:00
}
return r ;
2011-10-13 15:11:41 +00:00
}
2012-02-23 20:48:12 +00:00
2015-08-16 03:45:28 +00:00
/ * *
* Asserts that a select matches the given IDs
2015-09-18 16:59:48 +00:00
* @ example t ( "Check for something" , "//[a]" , [ "foo" , "bar" ] ) ;
2015-08-16 03:45:28 +00:00
* @ param { String } a - Assertion name
* @ param { String } b - Sizzle selector
* @ param { Array } c - Array of ids to construct what is expected
* /
function t ( a , b , c ) {
2015-08-16 06:59:58 +00:00
var f = jQuery ( b ) . get ( ) ,
2015-08-16 03:45:28 +00:00
s = "" ,
i = 0 ;
for ( ; i < f . length ; i ++ ) {
2015-08-16 06:59:58 +00:00
s += ( s && "," ) + "'" + f [ i ] . id + "'" ;
2015-08-16 03:45:28 +00:00
}
2015-08-16 06:59:58 +00:00
assert . deepEqual ( f , q . apply ( q , c ) , a + " (" + b + ")" ) ;
2011-09-12 23:40:14 +00:00
}
2015-08-16 03:45:28 +00:00
// ====== All known boolean attributes, including html5 booleans ======
// autobuffer, autofocus, autoplay, async, checked,
// compact, controls, declare, defer, disabled,
// formnovalidate, hidden, indeterminate (property only),
// ismap, itemscope, loop, multiple, muted, nohref, noresize,
// noshade, nowrap, novalidate, open, pubdate, readonly, required,
// reversed, scoped, seamless, selected, truespeed, visible (skipping visible attribute, which is on a barprop object)
2015-08-16 06:59:58 +00:00
t ( "Attribute Exists" , "[autobuffer]" , [ "video1" ] ) ;
t ( "Attribute Exists" , "[autofocus]" , [ "text1" ] ) ;
t ( "Attribute Exists" , "[autoplay]" , [ "video1" ] ) ;
t ( "Attribute Exists" , "[async]" , [ "script1" ] ) ;
t ( "Attribute Exists" , "[checked]" , [ "check1" ] ) ;
t ( "Attribute Exists" , "[compact]" , [ "dl" ] ) ;
t ( "Attribute Exists" , "[controls]" , [ "video1" ] ) ;
t ( "Attribute Exists" , "[declare]" , [ "object1" ] ) ;
t ( "Attribute Exists" , "[defer]" , [ "script1" ] ) ;
t ( "Attribute Exists" , "[disabled]" , [ "check1" ] ) ;
t ( "Attribute Exists" , "[formnovalidate]" , [ "form1" ] ) ;
t ( "Attribute Exists" , "[hidden]" , [ "div1" ] ) ;
t ( "Attribute Exists" , "[indeterminate]" , [ ] ) ;
t ( "Attribute Exists" , "[ismap]" , [ "img1" ] ) ;
t ( "Attribute Exists" , "[itemscope]" , [ "div1" ] ) ;
t ( "Attribute Exists" , "[loop]" , [ "video1" ] ) ;
t ( "Attribute Exists" , "[multiple]" , [ "select1" ] ) ;
t ( "Attribute Exists" , "[muted]" , [ "audio1" ] ) ;
t ( "Attribute Exists" , "[nohref]" , [ "area1" ] ) ;
t ( "Attribute Exists" , "[noresize]" , [ "textarea1" ] ) ;
t ( "Attribute Exists" , "[noshade]" , [ "hr1" ] ) ;
t ( "Attribute Exists" , "[nowrap]" , [ "td1" , "div1" ] ) ;
t ( "Attribute Exists" , "[novalidate]" , [ "form1" ] ) ;
t ( "Attribute Exists" , "[open]" , [ "details1" ] ) ;
t ( "Attribute Exists" , "[pubdate]" , [ "article1" ] ) ;
t ( "Attribute Exists" , "[readonly]" , [ "text1" ] ) ;
t ( "Attribute Exists" , "[required]" , [ "text1" ] ) ;
t ( "Attribute Exists" , "[reversed]" , [ "ol1" ] ) ;
t ( "Attribute Exists" , "[scoped]" , [ "style1" ] ) ;
t ( "Attribute Exists" , "[seamless]" , [ "iframe1" ] ) ;
t ( "Attribute Exists" , "[selected]" , [ "option1" ] ) ;
t ( "Attribute Exists" , "[truespeed]" , [ "marquee1" ] ) ;
2015-08-16 03:45:28 +00:00
// Enumerated attributes (these are not boolean content attributes)
jQuery . expandedEach = jQuery . each ;
2015-08-16 06:59:58 +00:00
jQuery . expandedEach ( [ "draggable" , "contenteditable" , "aria-disabled" ] , function ( i , val ) {
t ( "Enumerated attribute" , "[" + val + "]" , [ "div1" ] ) ;
} ) ;
t ( "Enumerated attribute" , "[spellcheck]" , [ "span1" ] ) ;
2015-08-16 03:45:28 +00:00
2022-01-12 22:23:10 +00:00
t ( "tabindex selector does not retrieve all elements in IE6/7 (trac-8473)" ,
2015-08-16 03:45:28 +00:00
"form, [tabindex]" , [ "form1" , "text1" ] ) ;
2022-01-12 22:23:10 +00:00
t ( "Improperly named form elements do not interfere with form selections (trac-9570)" , "form[name='formName']" , [ "form1" ] ) ;
2011-10-13 15:11:41 +00:00
}
2015-08-16 03:45:28 +00:00
) ;
2011-09-12 23:40:14 +00:00
2015-08-16 03:45:28 +00:00
QUnit . test ( "jQuery.contains" , function ( assert ) {
assert . expect ( 16 ) ;
2014-02-26 23:01:07 +00:00
2015-08-16 06:59:58 +00:00
var container = document . getElementById ( "nonnodes" ) ,
2014-02-26 23:01:07 +00:00
element = container . firstChild ,
text = element . nextSibling ,
nonContained = container . nextSibling ,
2015-08-16 06:59:58 +00:00
detached = document . createElement ( "a" ) ;
2015-08-16 03:45:28 +00:00
assert . ok ( element && element . nodeType === 1 , "preliminary: found element" ) ;
assert . ok ( text && text . nodeType === 3 , "preliminary: found text" ) ;
assert . ok ( nonContained , "preliminary: found non-descendant" ) ;
2015-08-16 06:59:58 +00:00
assert . ok ( jQuery . contains ( container , element ) , "child" ) ;
assert . ok ( jQuery . contains ( container . parentNode , element ) , "grandchild" ) ;
assert . ok ( jQuery . contains ( container , text ) , "text child" ) ;
assert . ok ( jQuery . contains ( container . parentNode , text ) , "text grandchild" ) ;
assert . ok ( ! jQuery . contains ( container , container ) , "self" ) ;
assert . ok ( ! jQuery . contains ( element , container ) , "parent" ) ;
assert . ok ( ! jQuery . contains ( container , nonContained ) , "non-descendant" ) ;
assert . ok ( ! jQuery . contains ( container , document ) , "document" ) ;
assert . ok ( ! jQuery . contains ( container , document . documentElement ) , "documentElement (negative)" ) ;
assert . ok ( ! jQuery . contains ( container , null ) , "Passing null does not throw an error" ) ;
assert . ok ( jQuery . contains ( document , document . documentElement ) , "documentElement (positive)" ) ;
assert . ok ( jQuery . contains ( document , element ) , "document container (positive)" ) ;
assert . ok ( ! jQuery . contains ( document , detached ) , "document container (negative)" ) ;
} ) ;
QUnit . test ( "jQuery.uniqueSort" , function ( assert ) {
2015-08-16 03:45:28 +00:00
assert . expect ( 15 ) ;
2014-02-26 23:01:48 +00:00
function Arrayish ( arr ) {
var i = this . length = arr . length ;
while ( i -- ) {
this [ i ] = arr [ i ] ;
}
}
Arrayish . prototype = {
slice : [ ] . slice ,
sort : [ ] . sort ,
splice : [ ] . splice
} ;
var i , tests ,
detached = [ ] ,
body = document . body ,
2015-08-16 06:59:58 +00:00
fixture = document . getElementById ( "qunit-fixture" ) ,
detached1 = document . createElement ( "p" ) ,
detached2 = document . createElement ( "ul" ) ,
detachedChild = detached1 . appendChild ( document . createElement ( "a" ) ) ,
detachedGrandchild = detachedChild . appendChild ( document . createElement ( "b" ) ) ;
2014-02-26 23:01:48 +00:00
for ( i = 0 ; i < 12 ; i ++ ) {
2015-08-16 06:59:58 +00:00
detached . push ( document . createElement ( "li" ) ) ;
detached [ i ] . id = "detached" + i ;
detached2 . appendChild ( document . createElement ( "li" ) ) . id = "detachedChild" + i ;
2014-02-26 23:01:48 +00:00
}
tests = {
"Empty" : {
input : [ ] ,
expected : [ ]
} ,
"Single-element" : {
input : [ fixture ] ,
expected : [ fixture ]
} ,
"No duplicates" : {
input : [ fixture , body ] ,
expected : [ body , fixture ]
} ,
"Duplicates" : {
input : [ body , fixture , fixture , body ] ,
expected : [ body , fixture ]
} ,
"Detached" : {
input : detached . slice ( 0 ) ,
expected : detached . slice ( 0 )
} ,
"Detached children" : {
input : [
2015-08-16 06:59:58 +00:00
detached2 . childNodes [ 0 ] ,
detached2 . childNodes [ 1 ] ,
detached2 . childNodes [ 2 ] ,
detached2 . childNodes [ 3 ]
2014-02-26 23:01:48 +00:00
] ,
expected : [
2015-08-16 06:59:58 +00:00
detached2 . childNodes [ 0 ] ,
detached2 . childNodes [ 1 ] ,
detached2 . childNodes [ 2 ] ,
detached2 . childNodes [ 3 ]
2014-02-26 23:01:48 +00:00
]
} ,
"Attached/detached mixture" : {
input : [ detached1 , fixture , detached2 , document , detachedChild , body , detachedGrandchild ] ,
expected : [ document , body , fixture ] ,
length : 3
}
} ;
jQuery . each ( tests , function ( label , test ) {
var length = test . length || test . input . length ;
2015-08-16 03:45:28 +00:00
assert . deepEqual ( jQuery . uniqueSort ( test . input ) . slice ( 0 , length ) , test . expected , label + " (array)" ) ;
2015-08-16 06:59:58 +00:00
assert . deepEqual ( jQuery . uniqueSort ( new Arrayish ( test . input ) ) . slice ( 0 , length ) , test . expected , label + " (quasi-array)" ) ;
} ) ;
2015-05-05 14:59:12 +00:00
2015-08-16 03:45:28 +00:00
assert . strictEqual ( jQuery . unique , jQuery . uniqueSort , "jQuery.unique() is an alias for jQuery.uniqueSort()" ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2014-02-26 23:01:48 +00:00
2016-04-10 19:42:44 +00:00
testIframe (
2015-08-16 03:45:28 +00:00
"Sizzle cache collides with multiple Sizzles on a page" ,
2016-04-08 16:00:17 +00:00
"selector/sizzle_cache.html" ,
2016-04-10 19:42:44 +00:00
function ( assert , jQuery , window , document ) {
2016-05-10 09:12:28 +00:00
var $cached = window . $cached ;
2015-08-16 03:45:28 +00:00
2015-08-16 06:59:58 +00:00
assert . expect ( 4 ) ;
2015-08-16 03:45:28 +00:00
assert . notStrictEqual ( jQuery , $cached , "Loaded two engines" ) ;
2015-08-16 06:59:58 +00:00
assert . deepEqual ( $cached ( ".test a" ) . get ( ) , [ document . getElementById ( "collision" ) ] , "Select collision anchor with first sizzle" ) ;
assert . equal ( jQuery ( ".evil a" ) . length , 0 , "Select nothing with second sizzle" ) ;
assert . equal ( jQuery ( ".evil a" ) . length , 0 , "Select nothing again with second sizzle" ) ;
2015-08-16 03:45:28 +00:00
}
) ;
2014-02-24 18:05:16 +00:00
2022-01-12 22:23:10 +00:00
QUnit . test ( "Iframe dispatch should not affect jQuery (trac-13936)" , function ( assert ) {
2019-02-18 18:02:38 +00:00
assert . expect ( 1 ) ;
2014-02-24 18:05:16 +00:00
var loaded = false ,
thrown = false ,
2014-05-29 17:45:59 +00:00
iframe = document . getElementById ( "iframe" ) ,
2019-02-18 18:02:38 +00:00
iframeDoc = iframe . contentDocument || iframe . contentWindow . document ,
done = assert . async ( ) ;
2014-02-24 18:05:16 +00:00
jQuery ( iframe ) . on ( "load" , function ( ) {
var form ;
try {
iframeDoc = this . contentDocument || this . contentWindow . document ;
2014-05-29 17:54:45 +00:00
form = jQuery ( "#navigate" , iframeDoc ) [ 0 ] ;
2014-02-24 18:05:16 +00:00
} catch ( e ) {
thrown = e ;
}
if ( loaded ) {
2015-08-16 03:45:28 +00:00
assert . strictEqual ( thrown , false , "No error thrown from post-reload jQuery call" ) ;
2014-05-29 17:54:45 +00:00
// clean up
jQuery ( iframe ) . off ( ) ;
2019-02-18 18:02:38 +00:00
done ( ) ;
2014-02-24 18:05:16 +00:00
} else {
loaded = true ;
form . submit ( ) ;
}
2015-08-16 06:59:58 +00:00
} ) ;
2014-02-24 18:05:16 +00:00
iframeDoc . open ( ) ;
2014-05-29 17:45:59 +00:00
iframeDoc . write ( "<body><form id='navigate' action='?'></form></body>" ) ;
2014-02-24 18:05:16 +00:00
iframeDoc . close ( ) ;
2015-08-16 06:59:58 +00:00
} ) ;
2016-01-27 17:57:04 +00:00
QUnit . test ( "Ensure escapeSelector exists (escape tests in Sizzle)" , function ( assert ) {
assert . expect ( 1 ) ;
assert . equal ( jQuery . escapeSelector ( "#foo.bar" ) , "\\#foo\\.bar" , "escapeSelector present" ) ;
} ) ;