@@ -93,12 +93,12 @@ QUnit.test( "attr(String)", function( assert ) {
93
93
assert . equal ( jQuery ( "#area1" ) . attr ( "maxLength" ) , "30" , "Check for maxLength attribute" ) ;
94
94
95
95
// using innerHTML in IE causes href attribute to be serialized to the full path
96
- jQuery ( "<a/ >" ) . attr ( {
96
+ jQuery ( "<a></a >" ) . attr ( {
97
97
"id" : "tAnchor5" ,
98
98
"href" : "#5"
99
99
} ) . appendTo ( "#qunit-fixture" ) ;
100
100
assert . equal ( jQuery ( "#tAnchor5" ) . attr ( "href" ) , "#5" , "Check for non-absolute href (an anchor)" ) ;
101
- jQuery ( "<a id='tAnchor6' href='#5' / >" ) . appendTo ( "#qunit-fixture" ) ;
101
+ jQuery ( "<a id='tAnchor6' href='#5'></a >" ) . appendTo ( "#qunit-fixture" ) ;
102
102
assert . equal ( jQuery ( "#tAnchor5" ) . prop ( "href" ) , jQuery ( "#tAnchor6" ) . prop ( "href" ) , "Check for absolute href prop on an anchor" ) ;
103
103
104
104
jQuery ( "<script type='jquery/test' src='#5' id='scriptSrc'></script>" ) . appendTo ( "#qunit-fixture" ) ;
@@ -136,7 +136,7 @@ QUnit.test( "attr(String)", function( assert ) {
136
136
assert . equal ( $img . attr ( "height" ) , "53" , "Retrieve height attribute on an element with display:none." ) ;
137
137
138
138
// Check for style support
139
- styleElem = jQuery ( "<div/ >" ) . appendTo ( "#qunit-fixture" ) . css ( {
139
+ styleElem = jQuery ( "<div></div >" ) . appendTo ( "#qunit-fixture" ) . css ( {
140
140
background : "url(UPPERlower.gif)"
141
141
} ) ;
142
142
assert . ok ( ! ! ~ styleElem . attr ( "style" ) . indexOf ( "UPPERlower.gif" ) , "Check style attribute getter" ) ;
@@ -158,11 +158,11 @@ QUnit.test( "attr(String)", function( assert ) {
158
158
$a = jQuery ( "<a href='#' onclick='something()'>Click</a>" ) . appendTo ( "#qunit-fixture" ) ;
159
159
assert . equal ( $a . attr ( "onclick" ) , "something()" , "Retrieve ^on attribute without anonymous function wrapper." ) ;
160
160
161
- assert . ok ( jQuery ( "<div/ >" ) . attr ( "doesntexist" ) === undefined , "Make sure undefined is returned when no attribute is found." ) ;
162
- assert . ok ( jQuery ( "<div/ >" ) . attr ( "title" ) === undefined , "Make sure undefined is returned when no attribute is found." ) ;
163
- assert . equal ( jQuery ( "<div/ >" ) . attr ( "title" , "something" ) . attr ( "title" ) , "something" , "Set the title attribute." ) ;
161
+ assert . ok ( jQuery ( "<div></div >" ) . attr ( "doesntexist" ) === undefined , "Make sure undefined is returned when no attribute is found." ) ;
162
+ assert . ok ( jQuery ( "<div></div >" ) . attr ( "title" ) === undefined , "Make sure undefined is returned when no attribute is found." ) ;
163
+ assert . equal ( jQuery ( "<div></div >" ) . attr ( "title" , "something" ) . attr ( "title" ) , "something" , "Set the title attribute." ) ;
164
164
assert . ok ( jQuery ( ) . attr ( "doesntexist" ) === undefined , "Make sure undefined is returned when no element is there." ) ;
165
- assert . equal ( jQuery ( "<div/ >" ) . attr ( "value" ) , undefined , "An unset value on a div returns undefined." ) ;
165
+ assert . equal ( jQuery ( "<div></div >" ) . attr ( "value" ) , undefined , "An unset value on a div returns undefined." ) ;
166
166
assert . strictEqual ( jQuery ( "<select><option value='property'></option></select>" ) . attr ( "value" ) , undefined , "An unset value on a select returns undefined." ) ;
167
167
168
168
$form = jQuery ( "#form" ) . attr ( "enctype" , "multipart/form-data" ) ;
@@ -180,7 +180,7 @@ QUnit.test( "attr(String) on cloned elements, #9646", function( assert ) {
180
180
181
181
assert . strictEqual ( input . clone ( true ) . attr ( "name" , "test" ) [ 0 ] . name , "test" , "Name attribute should be changed on cloned element" ) ;
182
182
183
- div = jQuery ( "<div id='tester' / >" ) ;
183
+ div = jQuery ( "<div id='tester'></div >" ) ;
184
184
div . attr ( "id" ) ;
185
185
186
186
assert . strictEqual ( div . clone ( true ) . attr ( "id" , "test" ) [ 0 ] . id , "test" , "Id attribute should be changed on cloned element" ) ;
@@ -299,7 +299,7 @@ QUnit.test( "attr(String, Object)", function( assert ) {
299
299
$input = jQuery ( "<input type='checkbox'/>" ) . attr ( "checked" , true ) ;
300
300
assert . equal ( $input . prop ( "checked" ) , true , "Setting checked updates property (verified by .prop)" ) ;
301
301
assert . equal ( $input [ 0 ] . checked , true , "Setting checked updates property (verified by native property)" ) ;
302
- $input = jQuery ( "<option/ >" ) . attr ( "selected" , true ) ;
302
+ $input = jQuery ( "<option></option >" ) . attr ( "selected" , true ) ;
303
303
assert . equal ( $input . prop ( "selected" ) , true , "Setting selected updates property (verified by .prop)" ) ;
304
304
assert . equal ( $input [ 0 ] . selected , true , "Setting selected updates property (verified by native property)" ) ;
305
305
@@ -569,7 +569,7 @@ QUnit.test( "removeAttr(String)", function( assert ) {
569
569
assert . expect ( 12 ) ;
570
570
var $first ;
571
571
572
- assert . equal ( jQuery ( "<div class='hello' / >" ) . removeAttr ( "class" ) . attr ( "class" ) , undefined , "remove class" ) ;
572
+ assert . equal ( jQuery ( "<div class='hello'></div >" ) . removeAttr ( "class" ) . attr ( "class" ) , undefined , "remove class" ) ;
573
573
assert . equal ( jQuery ( "#form" ) . removeAttr ( "id" ) . attr ( "id" ) , undefined , "Remove id" ) ;
574
574
assert . equal ( jQuery ( "#foo" ) . attr ( "style" , "position:absolute;" ) . removeAttr ( "style" ) . attr ( "style" ) , undefined , "Check removing style attribute" ) ;
575
575
assert . equal ( jQuery ( "#form" ) . attr ( "style" , "position:absolute;" ) . removeAttr ( "style" ) . attr ( "style" ) , undefined , "Check removing style attribute on a form" ) ;
@@ -669,7 +669,7 @@ QUnit.test( "prop(String, Object)", function( assert ) {
669
669
assert . equal ( jQuery ( "#select2" ) . prop ( "selectedIndex" ) , 3 , "Check for selectedIndex attribute" ) ;
670
670
assert . equal ( jQuery ( "#foo" ) . prop ( "nodeName" ) . toUpperCase ( ) , "DIV" , "Check for nodeName attribute" ) ;
671
671
assert . equal ( jQuery ( "#foo" ) . prop ( "tagName" ) . toUpperCase ( ) , "DIV" , "Check for tagName attribute" ) ;
672
- assert . equal ( jQuery ( "<option/ >" ) . prop ( "selected" ) , false , "Check selected attribute on disconnected element." ) ;
672
+ assert . equal ( jQuery ( "<option></option >" ) . prop ( "selected" ) , false , "Check selected attribute on disconnected element." ) ;
673
673
674
674
assert . equal ( jQuery ( "#listWithTabIndex" ) . prop ( "tabindex" ) , 5 , "Check retrieving tabindex" ) ;
675
675
jQuery ( "#text1" ) . prop ( "readonly" , true ) ;
@@ -814,16 +814,16 @@ QUnit.test( "option.prop('selected', true) affects select.selectedIndex (gh-2732
814
814
815
815
function addOptions ( $elem ) {
816
816
return $elem . append (
817
- jQuery ( "<option/ >" ) . val ( "a" ) . text ( "One" ) ,
818
- jQuery ( "<option/ >" ) . val ( "b" ) . text ( "Two" ) ,
819
- jQuery ( "<option/ >" ) . val ( "c" ) . text ( "Three" )
817
+ jQuery ( "<option></option >" ) . val ( "a" ) . text ( "One" ) ,
818
+ jQuery ( "<option></option >" ) . val ( "b" ) . text ( "Two" ) ,
819
+ jQuery ( "<option></option >" ) . val ( "c" ) . text ( "Three" )
820
820
)
821
821
. find ( "[value=a]" ) . prop ( "selected" , true ) . end ( )
822
822
. find ( "[value=c]" ) . prop ( "selected" , true ) . end ( ) ;
823
823
}
824
824
825
825
var $optgroup ,
826
- $select = jQuery ( "<select/ >" ) ;
826
+ $select = jQuery ( "<select></select >" ) ;
827
827
828
828
// Check select with options
829
829
addOptions ( $select ) . appendTo ( "#qunit-fixture" ) ;
@@ -833,7 +833,7 @@ QUnit.test( "option.prop('selected', true) affects select.selectedIndex (gh-2732
833
833
$select . empty ( ) ;
834
834
835
835
// Check select with optgroup
836
- $optgroup = jQuery ( "<optgroup/ >" ) ;
836
+ $optgroup = jQuery ( "<optgroup></optgroup >" ) ;
837
837
addOptions ( $optgroup ) . appendTo ( $select ) ;
838
838
$select . find ( "[value=b]" ) . prop ( "selected" , true ) ;
839
839
@@ -947,7 +947,7 @@ QUnit.test( "val()", function( assert ) {
947
947
assert . equal ( $button . val ( ) , "foobar" , "Value retrieval on a button does not return innerHTML" ) ;
948
948
assert . equal ( $button . val ( "baz" ) . html ( ) , "text" , "Setting the value does not change innerHTML" ) ;
949
949
950
- assert . equal ( jQuery ( "<option/ >" ) . val ( "test" ) . attr ( "value" ) , "test" , "Setting value sets the value attribute" ) ;
950
+ assert . equal ( jQuery ( "<option></option >" ) . val ( "test" ) . attr ( "value" ) , "test" , "Setting value sets the value attribute" ) ;
951
951
} ) ;
952
952
953
953
QUnit . test ( "val() with non-matching values on dropdown list" , function ( assert ) {
@@ -1014,7 +1014,7 @@ var testVal = function( valueObj, assert ) {
1014
1014
assert . equal ( document . getElementById ( "text1" ) . value , "" , "Check for modified (via val(null)) value of input element" ) ;
1015
1015
1016
1016
var j ,
1017
- $select = jQuery ( "<select multiple><option value='1'/ ><option value='2'/ ></select>" ) ,
1017
+ $select = jQuery ( "<select multiple><option value='1'></option ><option value='2'></option ></select>" ) ,
1018
1018
$select1 = jQuery ( "#select1" ) ;
1019
1019
1020
1020
$select1 . val ( valueObj ( "3" ) ) ;
@@ -1130,7 +1130,7 @@ QUnit.test( "val(select) after form.reset() (Bug #2551)", function( assert ) {
1130
1130
QUnit . test ( "select.val(space characters) (gh-2978)" , function ( assert ) {
1131
1131
assert . expect ( 37 ) ;
1132
1132
1133
- var $select = jQuery ( "<select/ >" ) . appendTo ( "#qunit-fixture" ) ,
1133
+ var $select = jQuery ( "<select></select >" ) . appendTo ( "#qunit-fixture" ) ,
1134
1134
spaces = {
1135
1135
"\\t" : {
1136
1136
html : "	" ,
@@ -1266,7 +1266,7 @@ var testAddClass = function( valueObj, assert ) {
1266
1266
j . addClass ( valueObj ( "asdf" ) ) ;
1267
1267
assert . ok ( j . hasClass ( "asdf" ) , "Check node,textnode,comment for addClass" ) ;
1268
1268
1269
- div = jQuery ( "<div/ >" ) ;
1269
+ div = jQuery ( "<div></div >" ) ;
1270
1270
1271
1271
div . addClass ( valueObj ( "test" ) ) ;
1272
1272
assert . equal ( div . attr ( "class" ) , "test" , "Make sure there's no extra whitespace." ) ;
@@ -1697,17 +1697,17 @@ QUnit.test( "coords returns correct values in IE6/IE7, see #10828", function( as
1697
1697
assert . expect ( 1 ) ;
1698
1698
1699
1699
var area ,
1700
- map = jQuery ( "<map / >" ) ;
1700
+ map = jQuery ( "<map></map >" ) ;
1701
1701
1702
- area = map . html ( "<area shape='rect' coords='0,0,0,0' href='#' alt='a' / >" ) . find ( "area" ) ;
1702
+ area = map . html ( "<area shape='rect' coords='0,0,0,0' href='#' alt='a'></area >" ) . find ( "area" ) ;
1703
1703
assert . equal ( area . attr ( "coords" ) , "0,0,0,0" , "did not retrieve coords correctly" ) ;
1704
1704
} ) ;
1705
1705
1706
1706
QUnit . test ( "should not throw at $(option).val() (#14686)" , function ( assert ) {
1707
1707
assert . expect ( 1 ) ;
1708
1708
1709
1709
try {
1710
- jQuery ( "<option/ >" ) . val ( ) ;
1710
+ jQuery ( "<option></option >" ) . val ( ) ;
1711
1711
assert . ok ( true ) ;
1712
1712
} catch ( _ ) {
1713
1713
assert . ok ( false ) ;
0 commit comments