Skip to content

Commit a1862e5

Browse files
authoredJun 12, 2024··
Update HTML Parser steps for script element to set "script text" (#499)
1 parent 92390d1 commit a1862e5

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
 

‎spec/index.bs

+26
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,8 @@ spec:ECMA-262; urlPrefix: https://tc39.github.io/ecma262/
121121
type:dfn; text:current realm record; url: current-realm
122122
spec: HTML; urlPrefix: https://html.spec.whatwg.org/
123123
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
124126
type: dfn; text: get the text steps; url: get-the-text-steps
125127
type: dfn; text: set the inner text steps; url: set-the-inner-text-steps
126128
type: dfn; text: src; url: attr-script-src
@@ -1224,6 +1226,30 @@ The {{HTMLScriptElement/src}} setter steps are:
12241226
`script`.</ins>
12251227
1. <ins>Set [=this=]'s [=src=] content attribute to |value|.</ins>
12261228

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+
12271253
#### Slot value verification #### {#slot-value-verification}
12281254

12291255
The first few steps of the [=prepare the script element=] algorithm are modified as follows:

0 commit comments

Comments
 (0)
Please sign in to comment.