You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type: dfn; text: prepare the script element; url: prepare-the-script-element
124
+
type: dfn; text: The text insertion mode; url: parsing-main-incdata
125
+
type: dfn; text: reentrant invocation of the parser; url: nestedParsing
124
126
type: dfn; text: get the text steps; url: get-the-text-steps
125
127
type: dfn; text: set the inner text steps; url: set-the-inner-text-steps
126
128
type: dfn; text: src; url: attr-script-src
@@ -1224,6 +1226,30 @@ The {{HTMLScriptElement/src}} setter steps are:
1224
1226
`script`.</ins>
1225
1227
1. <ins>Set [=this=]'s [=src=] content attribute to |value|.</ins>
1226
1228
1229
+
#### Setting slot values from parser #### {#setting-slot-values-from-parser}
1230
+
1231
+
This document modifies the HTML parser to set the [=script text=] value when the script is created.
1232
+
1233
+
Modify the [=The text insertion mode=] algorithm as follows:
1234
+
1235
+
<dl class="switch">
1236
+
<dt id="scriptEndTag">An end tag whose tag name is "script"</dt>
1237
+
<dd>
1238
+
<p>...</p>
1239
+
1240
+
<ins><p>Set <var>script</var>'s [=script text=] value to its [=child text content=].</p></ins>
1241
+
1242
+
<p>If the <span>active speculative HTML parser</span> is null, then <span>prepare the script
1243
+
element</span><var>script</var>. This might cause some script to execute, which might cause
1244
+
<span data-x="dom-document-write">new characters to be inserted into the tokenizer</span>, and
1245
+
might cause the tokenizer to output more tokens, resulting in a [=reentrant invocation of the parser=].</p>
1246
+
1247
+
<p>...</p>
1248
+
</dd>
1249
+
</dl>
1250
+
1251
+
Issue: The above algorithm doesn't account for the case when the script element's content is changed mid-parse. Implementors should ensure they protect against this case. See [https://github.com/w3c/trusted-types/issues/507](https://github.com/w3c/trusted-types/issues/507).
1252
+
1227
1253
#### Slot value verification #### {#slot-value-verification}
1228
1254
1229
1255
The first few steps of the [=prepare the script element=] algorithm are modified as follows:
0 commit comments