Skip to content

Commit 15ae361

Browse files
gaohuiamgol
andauthored
Manipulation: Respect script crossorigin attribute in DOM manipulation
Fixes gh-4542 Closes gh-4563 Co-authored-by: Michał Gołębiowski-Owczarek <[email protected]>
1 parent df6858d commit 15ae361

File tree

5 files changed

+63
-3
lines changed

5 files changed

+63
-3
lines changed

src/manipulation.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,8 @@ function domManip( collection, args, callback, ignored ) {
157157
// Optional AJAX dependency, but won't run scripts if not present
158158
if ( jQuery._evalUrl && !node.noModule ) {
159159
jQuery._evalUrl( node.src, {
160-
nonce: node.nonce || node.getAttribute( "nonce" )
160+
nonce: node.nonce || node.getAttribute( "nonce" ),
161+
crossOrigin: node.crossOrigin
161162
}, doc );
162163
}
163164
} else {

src/manipulation/_evalUrl.js

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jQuery._evalUrl = function( url, options, doc ) {
1010
cache: true,
1111
async: false,
1212
global: false,
13+
scriptAttrs: options.crossOrigin ? { "crossOrigin": options.crossOrigin } : undefined,
1314

1415
// Only evaluate the response if it is successful (gh-4126)
1516
// dataFilter is not invoked for failure responses, so using it instead

test/data/mock.php

+15-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,21 @@ protected function script( $req ) {
5454
} else {
5555
header( 'Content-type: text/html' );
5656
}
57-
echo 'QUnit.assert.ok( true, "mock executed" );';
57+
58+
if ( !empty( $req->query['cors'] ) ) {
59+
header( "Access-Control-Allow-Origin: *" );
60+
}
61+
62+
if ( !empty( $req->query['callback'] ) ) {
63+
$headers = array_combine(
64+
array_map( 'strtolower', array_keys( $req->headers ) ),
65+
array_values( $req->headers )
66+
);
67+
68+
echo $req->query['callback'] . "(" . json_encode( [ 'headers' => $headers ] ) . ")";
69+
} else {
70+
echo 'QUnit.assert.ok( true, "mock executed" );';
71+
}
5872
}
5973

6074
// Used to be in test.js, but was renamed to testbar.php

test/middleware-mockserver.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,18 @@ var mocks = {
6767
} else {
6868
resp.writeHead( 200, { "content-type": "text/html" } );
6969
}
70-
resp.end( "QUnit.assert.ok( true, \"mock executed\" );" );
70+
71+
if ( req.query.cors ) {
72+
resp.writeHead( 200, { "access-control-allow-origin": "*" } );
73+
}
74+
75+
if ( req.query.callback ) {
76+
resp.end( req.query.callback + "(" + JSON.stringify( {
77+
headers: req.headers
78+
} ) + ")" );
79+
} else {
80+
resp.end( "QUnit.assert.ok( true, \"mock executed\" );" );
81+
}
7182
},
7283
testbar: function( req, resp ) {
7384
resp.writeHead( 200 );

test/unit/manipulation.js

+33
Original file line numberDiff line numberDiff line change
@@ -2295,6 +2295,39 @@ testIframe(
22952295
QUnit[ jQuery.ajax ? "test" : "skip" ]
22962296
);
22972297

2298+
2299+
// We need to simulate cross-domain requests with the feature that
2300+
// both 127.0.0.1 and localhost point to the mock http server.
2301+
// Skip the the test if we are not in localhost but make sure we run
2302+
// it in Karma.
2303+
QUnit[
2304+
jQuery.ajax && ( window.__karma__ || location.hostname === "localhost" ) ?
2305+
"test" :
2306+
"skip"
2307+
]( "jQuery.append with crossorigin attribute", function( assert ) {
2308+
assert.expect( 1 );
2309+
2310+
var done = assert.async(),
2311+
timeout;
2312+
2313+
Globals.register( "corsCallback" );
2314+
window.corsCallback = function( response ) {
2315+
assert.ok( typeof response.headers.origin === "string", "Origin header sent" );
2316+
window.clearTimeout( timeout );
2317+
done();
2318+
};
2319+
2320+
var src = baseURL + "mock.php?action=script&cors=1&callback=corsCallback";
2321+
src = src.replace( "localhost", "127.0.0.1" );
2322+
var html = "<script type=\"text/javascript\" src=\"" + src + "\" crossorigin=\"anonymous\"><\/script>";
2323+
2324+
jQuery( document.body ).append( html );
2325+
timeout = window.setTimeout( function() {
2326+
assert.ok( false, "Origin header should have been sent" );
2327+
done();
2328+
}, 2000 );
2329+
} );
2330+
22982331
QUnit.test( "jQuery.clone - no exceptions for object elements #9587", function( assert ) {
22992332

23002333
assert.expect( 1 );

0 commit comments

Comments
 (0)