Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delay marking inline module scripts as ready #10272

Merged
merged 3 commits into from
Apr 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion source
Original file line number Diff line number Diff line change
Expand Up @@ -62669,7 +62669,18 @@ o............A....e
following steps given <var>result</var>:</p>

<ol>
<li><p><span>Mark as ready</span> <var>el</var> given <var>result</var>.</p></li>
<li>
<p><span>Queue an element task</span> on the <span>networking task source</span>
given <var>el</var> to perform the following steps:</p>

<ol>
<li><p><span>Mark as ready</span> <var>el</var> given <var>result</var>.</p></li>
</ol>

<p class="note">Queueing a task here means that, even if the inline module script has
no dependencies or synchronously results in a parse error, we won't proceed to
<span>execute the script element</span> synchronously.</p>
</li>
</ol>
</li>
</ol>
Expand Down
Loading