@@ -2738,6 +2738,7 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
2738
2738
<p>The following terms are defined in the WHATWG MIME Sniffing standard: <ref spec=MIMESNIFF></p>
2739
2739
2740
2740
<ul class="brief">
2741
+ <li><dfn data-x-href="https://mimesniff.spec.whatwg.org/#mime-type-essence">essence</dfn></li>
2741
2742
<li><dfn data-x-href="https://mimesniff.spec.whatwg.org/#mime-type">MIME type</dfn></li>
2742
2743
<li><dfn data-x-href="https://mimesniff.spec.whatwg.org/#valid-mime-type">valid MIME type string</dfn></li>
2743
2744
<li><dfn data-x-href="https://mimesniff.spec.whatwg.org/#valid-mime-type-with-no-parameters">valid MIME type string with no parameters</dfn></li>
@@ -3883,6 +3884,16 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
3883
3884
<li><dfn data-x-href="https://drafts.csswg.org/css-cascade/#used-value">used value</dfn></li>
3884
3885
</ul>
3885
3886
3887
+ <p>Implementations that support scripting must support the CSS Constructable Stylesheet
3888
+ Objects. The following features and terms are defined in the CSS Constructable Stylesheet
3889
+ Objects specifications: <ref spec=CSSCSO>
3890
+
3891
+ <ul class="brief">
3892
+ <li><dfn data-x-href="https://wicg.github.io/construct-stylesheets/#dom-cssstylesheet-cssstylesheet"><code>CSSStyleSheet</code></dfn> constructor</li>
3893
+ <li><dfn data-x="dom-cssstylesheet-replace" data-x-href="https://wicg.github.io/construct-stylesheets/#dom-cssstylesheet-replace"><code>replace()</code></dfn> operation of <code>CSSStyleSheet</code></li>
3894
+ <li><dfn data-x-href="https://wicg.github.io/construct-stylesheets/#cssstylesheet-constructed-flag">constructed flag</dfn> constructor</li>
3895
+ </ul>
3896
+
3886
3897
<p>The <code>CanvasRenderingContext2D</code> object's use of fonts depends on the features
3887
3898
described in the CSS <cite>Fonts</cite> and <cite>Font Loading</cite> specifications, including
3888
3899
in particular <dfn><code>FontFace</code></dfn> objects and the <dfn
@@ -58013,15 +58024,28 @@ interface <dfn>HTMLScriptElement</dfn> : <span>HTMLElement</span> {
58013
58024
Authors should omit the <code data-x="attr-script-type">type</code> attribute instead of
58014
58025
redundantly setting it.</p></li>
58015
58026
58016
- <li><p>Setting the attribute to an <span>ASCII case-insensitive</span> match for the string
58017
- "<code data-x="">module</code>" means that the script is a <span>module script</span>. If it has
58018
- a <span>JavaScript MIME type</span>, or if the script is embedded inline, then it will be
58019
- interpreted as a <span>JavaScript module script</span> according to the JavaScript <i
58020
- data-x="js-prod-Module">Module</i> top-level production; if it has a <span>JSON MIME
58021
- type</span>, then it will be interpreted as a <span>JSON module script</span>. Module scripts
58022
- are not affected by the <code data-x="attr-script-defer">defer</code> attribute, but are
58023
- affected by the <code data-x="attr-script-async">async</code> attribute (regardless of the state
58024
- of the <code data-x="attr-script-src">src</code> attribute).</p></li>
58027
+ <li>
58028
+ <p>Setting the attribute to an <span>ASCII case-insensitive</span> match for the string
58029
+ "<code data-x="">module</code>" means that the script is one of the various types of
58030
+ <span>module script</span>.
58031
+
58032
+ <dl class="switch">
58033
+ <dt>If the script is embedded inline
58034
+ <dt>If the script has a <span>JavaScript MIME type</span>
58035
+ <dd>It will be interpreted as a <span>JavaScript module script</span> according to the
58036
+ JavaScript <i data-x="js-prod-Module">Module</i> top-level production.
58037
+
58038
+ <dt>If the script has a <span>JSON MIME type</span>
58039
+ <dd>It will be interpreted as a <span>JSON module script</span>.
58040
+
58041
+ <dt>If the script has MIME type whose <span>essence</span> is <code>text/css</code>
58042
+ <dd>It will be interpreted as a <span>style sheet module script</span>.
58043
+ </dl>
58044
+
58045
+ <p>Module scripts are not affected by the <code data-x="attr-script-defer">defer</code>
58046
+ attribute, but are affected by the <code data-x="attr-script-async">async</code> attribute
58047
+ (regardless of the state of the <code data-x="attr-script-src">src</code> attribute).</p>
58048
+ </li>
58025
58049
58026
58050
<li><p>Setting the attribute to any other value means that the script is a <dfn>data
58027
58051
block</dfn>, which is not processed. None of the <code>script</code> attributes (except <code
@@ -58040,11 +58064,12 @@ interface <dfn>HTMLScriptElement</dfn> : <span>HTMLElement</span> {
58040
58064
ever be reinterpreted as a different script type, even in future user agents.</p>
58041
58065
58042
58066
<p><span data-x="classic script">Classic scripts</span> and <span data-x="JavaScript module
58043
- script">JavaScript module scripts</span> can be embedded inline, or be imported from an external
58044
- file using the <dfn data-export="" data-dfn-for="script" data-dfn-type="element-attr"><code
58045
- data-x="attr-script-src">src</code></dfn> attribute, which if specified gives the <span>URL</span>
58046
- of the external script resource to use. If <code data-x="attr-script-src">src</code> is specified,
58047
- it must be a <span>valid non-empty URL potentially surrounded by spaces</span>.</p>
58067
+ script">JavaScript module scripts</span> may be embedded inline, and all script types may be
58068
+ imported from an external file using the <dfn data-export="" data-dfn-for="script"
58069
+ data-dfn-type="element-attr"><code data-x="attr-script-src">src</code></dfn> attribute, which if
58070
+ specified gives the <span>URL</span> of the external script resource to use. If <code
58071
+ data-x="attr-script-src">src</code> is specified, it must be a <span>valid non-empty URL
58072
+ potentially surrounded by spaces</span>.</p>
58048
58073
58049
58074
<p>The contents of inline <code>script</code> elements, or the external script resource, must
58050
58075
conform with the requirements of the JavaScript specification's <i
@@ -58055,6 +58080,10 @@ interface <dfn>HTMLScriptElement</dfn> : <span>HTMLElement</span> {
58055
58080
<p>The contents of the external script resource for <span data-x="JSON module script">JSON module
58056
58081
scripts</span> must conform to the requirements of the JSON specification <ref spec=JSON>.</p>
58057
58082
58083
+ <p>The contents of the external script resource for <span data-x="style sheet module script">style
58084
+ sheet module scripts</span> must conform to the requirements of the CSS Syntax specification
58085
+ <ref spec=CSSSYNTAX>.</p>
58086
+
58058
58087
<p>When used to include <span data-x="data block">data blocks</span>, the data must be embedded
58059
58088
inline, the format of the data must be given using the <code data-x="attr-script-type">type</code>
58060
58089
attribute, and the contents of the <code>script</code> element must conform to the requirements
@@ -87524,7 +87553,10 @@ interface <dfn>ApplicationCache</dfn> : <span>EventTarget</span> {
87524
87553
script">JavaScript module scripts</span>;</p></li>
87525
87554
87526
87555
<li><p>a <span>Synthetic Module Record</span>, for <span data-x="JSON module script">JSON
87527
- module scripts</span>; or</p></li>
87556
+ module scripts</span>;</p></li>
87557
+
87558
+ <li><p>a <span>Synthetic Module Record</span>, for <span data-x="style sheet module
87559
+ script">style sheet module scripts</span>; or</p></li>
87528
87560
87529
87561
<li><p>null, representing a parsing failure.</p></li>
87530
87562
</ul>
@@ -87580,33 +87612,39 @@ interface <dfn>ApplicationCache</dfn> : <span>EventTarget</span> {
87580
87612
data-x="concept-script">script</span>. It has no additional <span data-x="struct
87581
87613
item">items</span>.</p>
87582
87614
87583
- <p><span data-x="module script">Module scripts</span> can be classified into two types:</p>
87615
+ <p><span data-x="module script">Module scripts</span> can be classified into three types:</p>
87584
87616
87585
87617
<ul>
87586
87618
<li><p>A <span>module script</span> is a <dfn data-export="">JavaScript module script</dfn> if
87587
87619
its <span data-x="concept-script-record">record</span> is a <span>Source Text Module
87588
87620
Record</span>.</p></li>
87589
87621
87622
+ <!--
87623
+ These definitions are not super-rigorous, but they don't need to be for now.
87624
+
87625
+ If we ever start testing if something is a JSON module script in algorithms, instead of just
87626
+ referring to the concept, then we should consider adding a type item to the module script
87627
+ struct.
87628
+ -->
87629
+
87590
87630
<li>
87591
87631
<p>A <span>module script</span> is a <dfn data-export="">JSON module script</dfn> if its <span
87592
87632
data-x="concept-script-record">record</span> is a <span>Synthetic Module Record</span>, and it
87593
87633
was created via the <span data-x="creating a JSON module script">create a JSON module
87594
87634
script</span> algorithm. JSON module scripts represent a parsed JSON document.</p>
87595
- <!--
87596
- This definition is not super-rigorous, but it doesn't need to be for now. Technically, the
87597
- "it was created via..." requirement is redundant, since there are no other Synthetic Module
87598
- Record users.
87599
-
87600
- If we ever: (a) get more Synthetic Module Record Users; or (b) start testing if something is a
87601
- JSON module script in algorithms, instead of just referring to the concept, then we should
87602
- consider adding a type item to the module script struct.
87603
- -->
87604
87635
87605
87636
<p class="note">As JSON documents do not import dependent modules, and do not throw exceptions
87606
87637
on evaluation, the <span data-x="concept-script-script-fetch-options">fetch options</span> and
87607
87638
<span data-x="concept-script-base-url">base URL</span> of a <span>JSON module script</span> are
87608
87639
always null.</p>
87609
87640
</li>
87641
+
87642
+ <li>
87643
+ <p>A <span>module script</span> is a <dfn data-export="">style sheet module script</dfn> if its
87644
+ <span data-x="concept-script-record">record</span> is a <span>Synthetic Module Record</span>,
87645
+ and it was created via the <span data-x="creating a style sheet module script">create a style
87646
+ sheet module script</span> algorithm. Style sheet module scripts represent a parsed CSS style
87647
+ sheet.</p>
87610
87648
</ul>
87611
87649
87612
87650
<p>The <dfn>active script</dfn> is determined by the following algorithm:</p>
@@ -88295,6 +88333,23 @@ interface <dfn>ApplicationCache</dfn> : <span>EventTarget</span> {
88295
88333
</ol>
88296
88334
</li>
88297
88335
88336
+ <li>
88337
+ <p>If the <span>essence</span> of <var>type</var> is <code>text/css</code>, then:</p>
88338
+
88339
+ <ol>
88340
+ <li><p>Let <var>source text</var> be the result of <span data-x="UTF-8 decode">UTF-8
88341
+ decoding</span> <var>response</var>'s <span
88342
+ data-x="concept-response-body">body</span>.</p></li>
88343
+
88344
+ <li><p><span data-x="creating a style sheet module script">Create a style sheet module
88345
+ script</span> given <var>source text</var>, <var>module map settings object</var>,
88346
+ <var>response</var>'s <span data-x="concept-response-url">url</span>, and <var>options</var>.
88347
+ Wait until the algorithm asynchronously completes with <var>result</var>.</p></li>
88348
+
88349
+ <li><p>Set <var>module script</var> to <var>result</var>.</p></li>
88350
+ </ol>
88351
+ </li>
88352
+
88298
88353
<li>
88299
88354
<p><span data-x="map set">Set</span> <var>moduleMap</var>[<var>url</var>] to <var>module
88300
88355
script</var>, and asynchronously complete this algorithm with <var>module script</var>.</p>
@@ -88661,6 +88716,61 @@ interface <dfn>ApplicationCache</dfn> : <span>EventTarget</span> {
88661
88716
<li><p>Return <var>script</var>.</p></li>
88662
88717
</ol>
88663
88718
88719
+ <p>To <dfn data-x="creating a style sheet module script">create a style sheet module script</dfn>,
88720
+ given a <span>JavaScript string</span> <var>source</var>, an <span>environment settings
88721
+ object</span> <var>settings</var>, a <span>URL</span> <var>baseURL</var>, and some <span>script
88722
+ fetch options</span> <var>options</var>, run these steps. The algorithm will asynchronously
88723
+ complete with a new <span>style sheet module script</span>.</p>
88724
+
88725
+ <ol>
88726
+ <li><p>Let <var>script</var> be a new <span>style sheet module script</span> that this algorithm
88727
+ will subsequently initialize.</p></li>
88728
+
88729
+ <li><p>Set <var>script</var>'s <span>settings object</span> to <var>settings</var>.</p></li>
88730
+
88731
+ <li><p>Set <var>script</var>'s <span data-x="concept-script-base-url">base URL</span> to
88732
+ <var>baseURL</var>.</p></li>
88733
+
88734
+ <li><p>Set <span data-x="concept-script-script-fetch-options">fetch options</span> to
88735
+ <var>options</var>.</p></li>
88736
+
88737
+ <li><p>Set <var>script</var>'s <span data-x="concept-script-parse-error">parse error</span> and
88738
+ <span data-x="concept-script-error-to-rethrow">error to rethrow</span> to null.</p></li>
88739
+
88740
+ <li><p>Let <var>sheet</var> be a new <code>CSSStyleSheet</code> object, as if the constructor
88741
+ is called with no arguments.</p></li>
88742
+
88743
+ <li><p>Let <var>promise</var> be the result of invoking the <code
88744
+ data-x="dom-cssstylesheet-replace">replace()</code> operation with <var>text</var> as an
88745
+ argument.</p></li>
88746
+
88747
+ <li>
88748
+ <p>Upon fulfillment of <var>promise</var>:</p>
88749
+
88750
+ <ol>
88751
+ <li><p>Unset <var>sheet</var>'s <span>constructed flag</span>.</p></li>
88752
+
88753
+ <li><p>Set <var>script</var>'s <span data-x="concept-script-record">record</span> to the result
88754
+ of <span data-x="create a synthetic module record with a default export">creating a synthetic
88755
+ module record with a default export</span> of <var>style sheet</var> with
88756
+ <var>settings</var>.</p></li>
88757
+
88758
+ <li><p>Asynchronously complete this algorithm with <var>script</var>.</p></li>
88759
+ </ol>
88760
+ </li>
88761
+
88762
+ <li>
88763
+ <p>Upon rejection of <var>promise</var> with <var>reason</var>:</p>
88764
+ <ol>
88765
+ <li><p>Set <var>script</var>'s <span data-x="concept-script-parse-error">parse error</span> to
88766
+ <var>reason</var>.</p></li>
88767
+
88768
+ <li><p>Asynchronously complete this algorithm with <var>script</var>.</p></li>
88769
+ </ol>
88770
+ </li>
88771
+
88772
+ </ol>
88773
+
88664
88774
<p>To <dfn>create a synthetic module record with a default export</dfn> of a JavaScript value
88665
88775
<var>value</var> with an <span>environment settings object</span> <var>settings</var>:</p>
88666
88776
@@ -122924,6 +123034,9 @@ INSERT INTERFACES HERE
122924
123034
<dt id="refsCSSWM">[CSSWM]</dt>
122925
123035
<dd><cite><a href="https://drafts.csswg.org/css-writing-modes/">CSS Writing Modes</a></cite>, E. Etemad, K. Ishii. W3C.</dd>
122926
123036
123037
+ <dt id="refsCSSCSO">[CSSCSO]</dt>
123038
+ <dd><cite><a href="https://wicg.github.io/construct-stylesheets/">Constructable Stylesheet Objects</a></cite>, T. Atkins, E. Willigers, R. Amni. W3C.</dd>
123039
+
122927
123040
<dt id="refsDASH">[DASH]</dt>
122928
123041
<dd><cite><a href="https://www.iso.org/standard/65274.html">Dynamic adaptive streaming over HTTP (DASH)</a></cite>. ISO.</dd>
122929
123042
0 commit comments