@@ -71,13 +71,20 @@ QUnit.module( "ajax", {
71
71
} ;
72
72
} ) ;
73
73
74
- ajaxTest ( "jQuery.ajax() - execute js for crossOrigin when dataType option is provided " , 3 ,
74
+ ajaxTest ( "jQuery.ajax() - custom attributes for script tag " , 5 ,
75
75
function ( assert ) {
76
76
return {
77
77
create : function ( options ) {
78
- options . crossDomain = true ;
78
+ var xhr ;
79
+ options . method = "POST" ;
79
80
options . dataType = "script" ;
80
- return jQuery . ajax ( url ( "mock.php?action=script&header=ecma" ) , options ) ;
81
+ options . scriptAttrs = { id : "jquery-ajax-test" , async : "async" } ;
82
+ xhr = jQuery . ajax ( url ( "mock.php?action=script" ) , options ) ;
83
+ assert . equal ( jQuery ( "#jquery-ajax-test" ) . attr ( "async" ) , "async" , "attr value" ) ;
84
+ return xhr ;
85
+ } ,
86
+ beforeSend : function ( _jqXhr , settings ) {
87
+ assert . strictEqual ( settings . type , "GET" , "Type changed to GET" ) ;
81
88
} ,
82
89
success : function ( ) {
83
90
assert . ok ( true , "success" ) ;
@@ -89,20 +96,13 @@ QUnit.module( "ajax", {
89
96
}
90
97
) ;
91
98
92
- ajaxTest ( "jQuery.ajax() - custom attributes for script tag " , 5 ,
99
+ ajaxTest ( "jQuery.ajax() - execute JS when dataType option is provided " , 3 ,
93
100
function ( assert ) {
94
101
return {
95
102
create : function ( options ) {
96
- var xhr ;
97
- options . method = "POST" ;
103
+ options . crossDomain = true ;
98
104
options . dataType = "script" ;
99
- options . scriptAttrs = { id : "jquery-ajax-test" , async : "async" } ;
100
- xhr = jQuery . ajax ( url ( "mock.php?action=script" ) , options ) ;
101
- assert . equal ( jQuery ( "#jquery-ajax-test" ) . attr ( "async" ) , "async" , "attr value" ) ;
102
- return xhr ;
103
- } ,
104
- beforeSend : function ( _jqXhr , settings ) {
105
- assert . strictEqual ( settings . type , "GET" , "Type changed to GET" ) ;
105
+ return jQuery . ajax ( url ( "mock.php?action=script&header=ecma" ) , options ) ;
106
106
} ,
107
107
success : function ( ) {
108
108
assert . ok ( true , "success" ) ;
@@ -114,22 +114,16 @@ QUnit.module( "ajax", {
114
114
}
115
115
) ;
116
116
117
- ajaxTest ( "jQuery.ajax() - do not execute js (crossOrigin)" , 2 , function ( assert ) {
118
- return {
119
- create : function ( options ) {
120
- options . crossDomain = true ;
121
- return jQuery . ajax ( url ( "mock.php?action=script&header" ) , options ) ;
122
- } ,
123
- success : function ( ) {
124
- assert . ok ( true , "success" ) ;
125
- } ,
126
- fail : function ( ) {
127
- assert . ok ( false , "fail" ) ;
128
- } ,
129
- complete : function ( ) {
130
- assert . ok ( true , "complete" ) ;
131
- }
132
- } ;
117
+ jQuery . each ( [ " - Same Domain" , " - Cross Domain" ] , function ( crossDomain , label ) {
118
+ ajaxTest ( "jQuery.ajax() - do not execute JS (gh-2432, gh-4822) " + label , 1 , function ( assert ) {
119
+ return {
120
+ url : url ( "mock.php?action=script&header" ) ,
121
+ crossDomain : crossDomain ,
122
+ success : function ( ) {
123
+ assert . ok ( true , "success" ) ;
124
+ }
125
+ } ;
126
+ } ) ;
133
127
} ) ;
134
128
135
129
ajaxTest ( "jQuery.ajax() - success callbacks (late binding)" , 8 , function ( assert ) {
@@ -1439,25 +1433,6 @@ QUnit.module( "ajax", {
1439
1433
} ;
1440
1434
} ) ;
1441
1435
1442
- ajaxTest ( "jQuery.ajax() - script by content-type" , 2 , function ( ) {
1443
- return [
1444
- {
1445
- url : baseURL + "mock.php?action=script" ,
1446
- data : {
1447
- "header" : "script"
1448
- } ,
1449
- success : true
1450
- } ,
1451
- {
1452
- url : baseURL + "mock.php?action=script" ,
1453
- data : {
1454
- "header" : "ecma"
1455
- } ,
1456
- success : true
1457
- }
1458
- ] ;
1459
- } ) ;
1460
-
1461
1436
ajaxTest ( "jQuery.ajax() - JSON by content-type" , 5 , function ( assert ) {
1462
1437
return {
1463
1438
url : baseURL + "mock.php?action=json" ,
0 commit comments