Skip to content

Commit e4ce01e

Browse files
Correct "in body" insertion mode note to account for noscript
This note found in the "Any other start tag" condition of the "in body" insertion mode did not account for a "noscript" start tag being able to reach it, if the scripting flag is disabled (since the only preceding condition that can match a start tag whose tag name is "noscript" has the clause "if the scripting flag is enabled"). ("noscript" is in the special category and thus non-ordinary.)
1 parent 88639ce commit e4ce01e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125086,8 +125086,8 @@ document.body.appendChild(text);
125086125086

125087125087
<p><span>Insert an HTML element</span> for the token.</p>
125088125088

125089-
<p class="note">This element will be an <span>ordinary</span>
125090-
element.</p>
125089+
<p class="note">This element will be an <span>ordinary</span> element. With one exception: if
125090+
the <span>scripting flag</span> is disabled, it can also be a <code>noscript</code> element.</p>
125091125091
</dd>
125092125092

125093125093
<dt>Any other end tag</dt>

0 commit comments

Comments
 (0)