Skip to content

Commit 2f8f39e

Browse files
authored
Manipulation: Don't remove HTML comments from scripts
When evaluating scripts, jQuery strips out the possible wrapping HTML comment and a CDATA section. However, all supported browsers are already doing that when loading JS via appending a script tag to the DOM which is how we've been doing `jQuery.globalEval` since jQuery 3.0.0. jQuery logic was imperfect, e.g. it just stripped the `<!--` and `-->` markers, respectively at the beginning or the end of the script contents. However, browsers are also stripping everything following those markers in the same line, treating them as single-line comments delimiters; this is now also mandated by ECMAScript 2015 in Annex B. Instead of fixing the jQuery logic, just let the browser do its thing. We also used to strip CDATA sections. However, this shouldn't be needed as in XML documents they're already not visible when inspecting element contents and in HTML documents they have no meaning. We've preserved that behavior for backwards compatibility in 3.x but we're removing it for 4.0. Fixes gh-4904 Closes gh-4906
1 parent 0f623fd commit 2f8f39e

File tree

3 files changed

+22
-12
lines changed

3 files changed

+22
-12
lines changed

src/manipulation.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ var
2525

2626
// Support: IE <=10 - 11+
2727
// In IE using regex groups here causes severe slowdowns.
28-
rnoInnerhtml = /<script|<style|<link/i,
29-
30-
rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;
28+
rnoInnerhtml = /<script|<style|<link/i;
3129

3230
// Prefer a tbody over its parent table for containing new rows
3331
function manipulationTarget( elem, content ) {
@@ -161,7 +159,7 @@ function domManip( collection, args, callback, ignored ) {
161159
}, doc );
162160
}
163161
} else {
164-
DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc );
162+
DOMEval( node.textContent, node, doc );
165163
}
166164
}
167165
}

test/data/cleanScript.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-->
55
</script>
66
<script>
7-
<![CDATA[
7+
<!--//--><![CDATA[//><!--
88
QUnit.assert.ok( true, "script within CDATA executed" );
9-
]]>
9+
//--><!]]>
1010
</script>

test/unit/manipulation.js

+18-6
Original file line numberDiff line numberDiff line change
@@ -2233,19 +2233,31 @@ QUnit.test( "domManip executes scripts containing html comments or CDATA (trac-9
22332233
"</script>"
22342234
].join( "\n" ) ).appendTo( "#qunit-fixture" );
22352235

2236+
// This test requires XHTML mode as CDATA is not recognized in HTML.
2237+
// jQuery( [
2238+
// "<script type='text/javascript'>",
2239+
// "<![CDATA[",
2240+
// "QUnit.assert.ok( true, '<![CDATA[ handled' );",
2241+
// "//]]>",
2242+
// "</script>"
2243+
// ].join( "\n" ) ).appendTo( "#qunit-fixture" );
2244+
22362245
jQuery( [
22372246
"<script type='text/javascript'>",
2238-
"<![CDATA[",
2239-
"QUnit.assert.ok( true, '<![CDATA[ handled' );",
2240-
"//]]>",
2247+
"<!--//--><![CDATA[//><!--",
2248+
"QUnit.assert.ok( true, '<!--//--><![CDATA[//><!-- (Drupal case) handled' );",
2249+
"//--><!]]>",
22412250
"</script>"
22422251
].join( "\n" ) ).appendTo( "#qunit-fixture" );
22432252

2253+
// ES2015 in Annex B requires HTML-style comment delimiters (`<!--` & `-->`) to act as
2254+
// single-line comment delimiters; i.e. they should be treated as `//`.
2255+
// See gh-4904
22442256
jQuery( [
22452257
"<script type='text/javascript'>",
2246-
"<!--//--><![CDATA[//><!--",
2247-
"QUnit.assert.ok( true, '<!--//--><![CDATA[//><!-- (Drupal case) handled' );",
2248-
"//--><!]]>",
2258+
"<!-- Same-line HTML comment",
2259+
"QUnit.assert.ok( true, '<!-- Same-line HTML comment' );",
2260+
"-->",
22492261
"</script>"
22502262
].join( "\n" ) ).appendTo( "#qunit-fixture" );
22512263
} );

0 commit comments

Comments
 (0)