Skip to content

Commit 937923d

Browse files
authored
Manipulation: Support $el.html(selfRemovingScript) (#5378)
Don't try to remove a script element that has already removed itself. Also, compress `DOMEval.js`. Fixes gh-5377 Closes gh-5378
1 parent e8b7db4 commit 937923d

File tree

2 files changed

+22
-6
lines changed

2 files changed

+22
-6
lines changed

src/core/DOMEval.js

+7-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ export function DOMEval( code, node, doc ) {
1414
script = doc.createElement( "script" );
1515

1616
script.text = code;
17-
if ( node ) {
18-
for ( i in preservedScriptAttributes ) {
19-
if ( node[ i ] ) {
20-
script[ i ] = node[ i ];
21-
}
17+
for ( i in preservedScriptAttributes ) {
18+
if ( node && node[ i ] ) {
19+
script[ i ] = node[ i ];
2220
}
2321
}
24-
doc.head.appendChild( script ).parentNode.removeChild( script );
22+
23+
if ( doc.head.appendChild( script ).parentNode ) {
24+
script.parentNode.removeChild( script );
25+
}
2526
}

test/unit/manipulation.js

+15
Original file line numberDiff line numberDiff line change
@@ -1819,6 +1819,21 @@ QUnit.test( "html(script nomodule)", function( assert ) {
18191819
}, 1000 );
18201820
} );
18211821

1822+
QUnit.test( "html(self-removing script) (gh-5377)", function( assert ) {
1823+
assert.expect( 2 );
1824+
1825+
var $fixture = jQuery( "#qunit-fixture" );
1826+
1827+
$fixture.html(
1828+
[
1829+
"<script>document.currentScript.parentNode.removeChild( document.currentScript ); QUnit.assert.ok( true, 'removed document.currentScript' );</script>",
1830+
"<div>",
1831+
"<script>document.currentScript.parentNode.removeChild( document.currentScript ); QUnit.assert.ok( true, 'removed inner document.currentScript' );</script>",
1832+
"</div>"
1833+
].join( "" )
1834+
);
1835+
} );
1836+
18221837
QUnit.test( "html(Function) with incoming value -- direct selection", function( assert ) {
18231838

18241839
assert.expect( 4 );

0 commit comments

Comments
 (0)