Skip to content

Commit 5ebee9b

Browse files
littledanMs2ger
authored andcommitted
[WIP] Add style sheet module scripts
This patch provides CSS modules as a single default export, of a CSSStyleSheet object, which is not added to the document. Edge cases which I didn't see discussed elsewhere: - @imports are recursively fetched together with the module graph, blocking script execution. Network errors reached prevent the execution of the entire module graph. - Any MIME type whose essence is "text/css" is accepted; this appears to be weaker checking than elsewhere in the specification. - Although the Constructable Stylesheet Objects proposal is used for infrastructure, the resulting CSSStyleSheet object acts as if it were not constructed (i.e., you can't call the replace() method). Note, the Constructable Stylesheet Objects proposal makes important steps to specifying loading of @import, but there may still be room for more precise plumbing with HTML. This text ensures that style sheet module scripts have a base URL and fetch options, which might be referenced by the definition of @import in the future. Closes WICG/webcomponents#759
1 parent db03474 commit 5ebee9b

File tree

1 file changed

+138
-25
lines changed

1 file changed

+138
-25
lines changed

source

+138-25
Original file line numberDiff line numberDiff line change
@@ -2738,6 +2738,7 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
27382738
<p>The following terms are defined in the WHATWG MIME Sniffing standard: <ref spec=MIMESNIFF></p>
27392739

27402740
<ul class="brief">
2741+
<li><dfn data-x-href="https://mimesniff.spec.whatwg.org/#mime-type-essence">essence</dfn></li>
27412742
<li><dfn data-x-href="https://mimesniff.spec.whatwg.org/#mime-type">MIME type</dfn></li>
27422743
<li><dfn data-x-href="https://mimesniff.spec.whatwg.org/#valid-mime-type">valid MIME type string</dfn></li>
27432744
<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
38833884
<li><dfn data-x-href="https://drafts.csswg.org/css-cascade/#used-value">used value</dfn></li>
38843885
</ul>
38853886

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+
38863897
<p>The <code>CanvasRenderingContext2D</code> object's use of fonts depends on the features
38873898
described in the CSS <cite>Fonts</cite> and <cite>Font Loading</cite> specifications, including
38883899
in particular <dfn><code>FontFace</code></dfn> objects and the <dfn
@@ -58013,15 +58024,28 @@ interface <dfn>HTMLScriptElement</dfn> : <span>HTMLElement</span> {
5801358024
Authors should omit the <code data-x="attr-script-type">type</code> attribute instead of
5801458025
redundantly setting it.</p></li>
5801558026

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>
5802558049

5802658050
<li><p>Setting the attribute to any other value means that the script is a <dfn>data
5802758051
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> {
5804058064
ever be reinterpreted as a different script type, even in future user agents.</p>
5804158065

5804258066
<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>
5804858073

5804958074
<p>The contents of inline <code>script</code> elements, or the external script resource, must
5805058075
conform with the requirements of the JavaScript specification's <i
@@ -58055,6 +58080,10 @@ interface <dfn>HTMLScriptElement</dfn> : <span>HTMLElement</span> {
5805558080
<p>The contents of the external script resource for <span data-x="JSON module script">JSON module
5805658081
scripts</span> must conform to the requirements of the JSON specification <ref spec=JSON>.</p>
5805758082

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+
5805858087
<p>When used to include <span data-x="data block">data blocks</span>, the data must be embedded
5805958088
inline, the format of the data must be given using the <code data-x="attr-script-type">type</code>
5806058089
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> {
8752487553
script">JavaScript module scripts</span>;</p></li>
8752587554

8752687555
<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>
8752887560

8752987561
<li><p>null, representing a parsing failure.</p></li>
8753087562
</ul>
@@ -87580,33 +87612,39 @@ interface <dfn>ApplicationCache</dfn> : <span>EventTarget</span> {
8758087612
data-x="concept-script">script</span>. It has no additional <span data-x="struct
8758187613
item">items</span>.</p>
8758287614

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>
8758487616

8758587617
<ul>
8758687618
<li><p>A <span>module script</span> is a <dfn data-export="">JavaScript module script</dfn> if
8758787619
its <span data-x="concept-script-record">record</span> is a <span>Source Text Module
8758887620
Record</span>.</p></li>
8758987621

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+
8759087630
<li>
8759187631
<p>A <span>module script</span> is a <dfn data-export="">JSON module script</dfn> if its <span
8759287632
data-x="concept-script-record">record</span> is a <span>Synthetic Module Record</span>, and it
8759387633
was created via the <span data-x="creating a JSON module script">create a JSON module
8759487634
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-
-->
8760487635

8760587636
<p class="note">As JSON documents do not import dependent modules, and do not throw exceptions
8760687637
on evaluation, the <span data-x="concept-script-script-fetch-options">fetch options</span> and
8760787638
<span data-x="concept-script-base-url">base URL</span> of a <span>JSON module script</span> are
8760887639
always null.</p>
8760987640
</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>
8761087648
</ul>
8761187649

8761287650
<p>The <dfn>active script</dfn> is determined by the following algorithm:</p>
@@ -88295,6 +88333,23 @@ interface <dfn>ApplicationCache</dfn> : <span>EventTarget</span> {
8829588333
</ol>
8829688334
</li>
8829788335

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+
8829888353
<li>
8829988354
<p><span data-x="map set">Set</span> <var>moduleMap</var>[<var>url</var>] to <var>module
8830088355
script</var>, and asynchronously complete this algorithm with <var>module script</var>.</p>
@@ -88661,6 +88716,61 @@ interface <dfn>ApplicationCache</dfn> : <span>EventTarget</span> {
8866188716
<li><p>Return <var>script</var>.</p></li>
8866288717
</ol>
8866388718

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+
8866488774
<p>To <dfn>create a synthetic module record with a default export</dfn> of a JavaScript value
8866588775
<var>value</var> with an <span>environment settings object</span> <var>settings</var>:</p>
8866688776

@@ -122924,6 +123034,9 @@ INSERT INTERFACES HERE
122924123034
<dt id="refsCSSWM">[CSSWM]</dt>
122925123035
<dd><cite><a href="https://drafts.csswg.org/css-writing-modes/">CSS Writing Modes</a></cite>, E. Etemad, K. Ishii. W3C.</dd>
122926123036

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+
122927123040
<dt id="refsDASH">[DASH]</dt>
122928123041
<dd><cite><a href="https://www.iso.org/standard/65274.html">Dynamic adaptive streaming over HTTP (DASH)</a></cite>. ISO.</dd>
122929123042

0 commit comments

Comments
 (0)