@@ -6562,7 +6562,8 @@ annotate are called <dfn export for="annotated types" lt="inner type">inner type
6562
6562
The following extended attributes are <dfn for="extended attributes">applicable to types</dfn>:
6563
6563
[{{AllowShared}}],
6564
6564
[{{Clamp}}],
6565
- [{{EnforceRange}}], and
6565
+ [{{EnforceRange}}],
6566
+ [{{StringContext}}] and
6566
6567
[{{TreatNullAs}}].
6567
6568
6568
6569
<div algorithm>
@@ -7623,6 +7624,13 @@ value when its bit pattern is interpreted as an unsigned 64 bit integer.
7623
7624
An ECMAScript value |V| is [=converted to an IDL value|converted=]
7624
7625
to an IDL {{DOMString}} value by running the following algorithm:
7625
7626
7627
+ 1. If the conversion is to an IDL type [=extended attribute associated with|associated with=] the
7628
+ [{{StringContext}}] extended attribute, then set |V| to the result of [=validate the string in context=], passing
7629
+ [=this=], |V|, the {{StringContext}} extended attribute [=identifier=], and the [=identifier=]
7630
+ of the [{{StringContext}}] extended attribute [=related construct=].
7631
+
7632
+ Note: That algorithm may [=ECMAScript/throw=] a {{ECMAScript/TypeError}}.
7633
+
7626
7634
1. If |V| is <emu-val>null</emu-val> and the conversion is to an IDL type
7627
7635
[=extended attribute associated with|associated with=] the [{{TreatNullAs}}] extended
7628
7636
attribute, then return the {{DOMString}} value that represents the empty string.
@@ -10496,6 +10504,40 @@ that does specify [{{SecureContext}}].
10496
10504
</pre>
10497
10505
</div>
10498
10506
10507
+ <h4 id="StringContext" extended-attribute lt="StringContext">[StringContext]</h4>
10508
+
10509
+ If the [{{StringContext}}] [=extended attribute=] appears on {{DOMString}} or {{USVString}}, it
10510
+ modifies how the value is converted to the IDL type, causing additional value validation to
10511
+ adhere to the context the string is used in.
10512
+
10513
+ The [{{StringContext}}] extended attribute must [=takes an identifier|take an identifier=]. The [=identifier=]
10514
+ must be one of "<code>html</code>", "<code>script-url</code>" and "<code>script</code>".
10515
+
10516
+ A type annotated with the [{{StringContext}}] extended attribute must not appear in a construct
10517
+ that is not a [=regular attribute=] or a [=regular operation=]. A type annotated with the [{{StringContext}}]
10518
+ extended attribute must not appear in a [=read only=] attribute. The construct that the type annotated with
10519
+ the [{{StringContext}}] extended attribute appears in is its <dfn>related construct</dfn>.
10520
+
10521
+ A type that is not {{DOMString}} or {{USVString}} must not be [=extended attributes associated with|associated with=]
10522
+ the [{{StringContext}}] extended attribute.
10523
+
10524
+ See the rules for converting ECMAScript values to the IDL types in [[#es-DOMString]] and [[#es-USVString]]
10525
+ for the specific requirements that the use of [{{StringContext}}] entails.
10526
+
10527
+ <div class="example">
10528
+
10529
+ In the following [=IDL fragment=],
10530
+ a [=variadic=] [=operation=] is declared
10531
+ that uses the [{{StringContext}}] [=extended attribute=]
10532
+ on all its arguments:
10533
+
10534
+ <pre highlight="webidl">
10535
+ interface Document {
10536
+ void write([StringContext=html] DOMString... text);
10537
+ };
10538
+ </pre>
10539
+ </div>
10540
+
10499
10541
10500
10542
<h4 id="TreatNonObjectAsNull" extended-attribute lt="TreatNonObjectAsNull">[TreatNonObjectAsNull]</h4>
10501
10543
@@ -10826,6 +10868,21 @@ allowed. The security check takes the following three inputs:
10826
10868
10827
10869
Note: The HTML Standard defines how a security check is performed. [[!HTML]]
10828
10870
10871
+ Certain algorithms in [[#es-type-mapping]] are defined to
10872
+ <dfn id="dfn-validate-the-string-in-context" export>validate the string in context</dfn> on a given
10873
+ value. This check is used to determine whether a given value
10874
+ is appropriate for its {{StringContext}}. This validation takes the following four inputs:
10875
+
10876
+ 1. the [=platform object=] on
10877
+ which the operation invocation or attribute access is being done,
10878
+ 1. the value to validate,
10879
+ 1. the {{StringContext}} [=identifier=], and
10880
+ 1. the [=identifier=] of the operation or attribute.
10881
+
10882
+ The algorithm returns an ECMAScript String value, or [=ECMAScript/throws=] a {{ECMAScript/TypeError}}.
10883
+
10884
+ Note: The HTML Standard defines how the validation is performed. [[!HTML]]
10885
+
10829
10886
10830
10887
<h3 id="es-overloads">Overload resolution algorithm</h3>
10831
10888
0 commit comments