Skip to content

Commit 20efd1d

Browse files
committed
[css-syntax] Export some dfns.
1 parent 045dc43 commit 20efd1d

2 files changed

Lines changed: 28 additions & 28 deletions

File tree

css-syntax/Overview.bs

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -794,71 +794,71 @@ Definitions</h3>
794794
Whenever the input stream is empty,
795795
the <a>next input code point</a> is always an EOF code point.
796796

797-
<dt><dfn>digit</dfn>
797+
<dt><dfn export>digit</dfn>
798798
<dd>
799799
A <a>code point</a> between U+0030 DIGIT ZERO (0) and U+0039 DIGIT NINE (9).
800800

801-
<dt><dfn>hex digit</dfn>
801+
<dt><dfn export>hex digit</dfn>
802802
<dd>
803803
A <a>digit</a>,
804804
or a <a>code point</a> between U+0041 LATIN CAPITAL LETTER A (A) and U+0046 LATIN CAPITAL LETTER F (F),
805805
or a <a>code point</a> between U+0061 LATIN SMALL LETTER A (a) and U+0066 LATIN SMALL LETTER F (f).
806806

807-
<dt><dfn>uppercase letter</dfn>
807+
<dt><dfn export>uppercase letter</dfn>
808808
<dd>
809809
A <a>code point</a> between U+0041 LATIN CAPITAL LETTER A (A) and U+005A LATIN CAPITAL LETTER Z (Z).
810810

811-
<dt><dfn>lowercase letter</dfn>
811+
<dt><dfn export>lowercase letter</dfn>
812812
<dd>
813813
A <a>code point</a> between U+0061 LATIN SMALL LETTER A (a) and U+007A LATIN SMALL LETTER Z (z).
814814

815-
<dt><dfn>letter</dfn>
815+
<dt><dfn export>letter</dfn>
816816
<dd>
817817
An <a>uppercase letter</a>
818818
or a <a>lowercase letter</a>.
819819

820-
<dt><dfn>non-ASCII code point</dfn>
820+
<dt><dfn export>non-ASCII code point</dfn>
821821
<dd>
822822
A <a>code point</a> with a value equal to or greater than U+0080 &lt;control>.
823823

824-
<dt><dfn>name-start code point</dfn>
824+
<dt><dfn export>name-start code point</dfn>
825825
<dd>
826826
A <a>letter</a>,
827827
a <a>non-ASCII code point</a>,
828828
or U+005F LOW LINE (_).
829829

830-
<dt><dfn>name code point</dfn>
830+
<dt><dfn export>name code point</dfn>
831831
<dd>
832832
A <a>name-start code point</a>,
833833
A <a>digit</a>,
834834
or U+002D HYPHEN-MINUS (-).
835835

836-
<dt><dfn>non-printable code point</dfn>
836+
<dt><dfn export>non-printable code point</dfn>
837837
<dd>
838838
A <a>code point</a> between U+0000 NULL and U+0008 BACKSPACE,
839839
or U+000B LINE TABULATION,
840840
or a <a>code point</a> between U+000E SHIFT OUT and U+001F INFORMATION SEPARATOR ONE,
841841
or U+007F DELETE.
842842

843-
<dt><dfn>newline</dfn>
843+
<dt><dfn export>newline</dfn>
844844
<dd>
845845
U+000A LINE FEED.
846846
<span class='note'>
847847
Note that U+000D CARRIAGE RETURN and U+000C FORM FEED are not included in this definition,
848848
as they are converted to U+000A LINE FEED during <a href="#input-preprocessing">preprocessing</a>.
849849
</span>
850850

851-
<dt><dfn>whitespace</dfn>
851+
<dt><dfn export>whitespace</dfn>
852852
<dd>A <a>newline</a>, U+0009 CHARACTER TABULATION, or U+0020 SPACE.
853853

854-
<dt><dfn>surrogate code point</dfn>
854+
<dt><dfn export>surrogate code point</dfn>
855855
<dd>
856856
A <a>code point</a> between U+D800 and U+DFFF inclusive.
857857

858-
<dt><dfn>maximum allowed code point</dfn>
858+
<dt><dfn export>maximum allowed code point</dfn>
859859
<dd>The greatest <a>code point</a> defined by Unicode: U+10FFFF.
860860

861-
<dt><dfn>identifier</dfn>
861+
<dt><dfn export>identifier</dfn>
862862
<dd>
863863
A portion of the CSS source that has the same syntax as an <<ident-token>>.
864864
Also appears in <<at-keyword-token>>,
@@ -1791,7 +1791,7 @@ Parsing</h2>
17911791
The items that can appear in the tree are:
17921792

17931793
<dl>
1794-
<dt><dfn>at-rule</dfn>
1794+
<dt><dfn export>at-rule</dfn>
17951795
<dd>
17961796
An at-rule has a name,
17971797
a prelude consisting of a list of component values,
@@ -1803,7 +1803,7 @@ Parsing</h2>
18031803
how to parse it
18041804
(preferably using one of the parser algorithms or entry points defined in this specification).
18051805

1806-
<dt><dfn>qualified rule</dfn>
1806+
<dt><dfn export>qualified rule</dfn>
18071807
<dd>
18081808
A qualified rule has
18091809
a prelude consisting of a list of component values,
@@ -1813,7 +1813,7 @@ Parsing</h2>
18131813
where the prelude is a selector [[SELECT]]
18141814
and the block a <i title="parse a list of declarations">list of declarations</i>.
18151815

1816-
<dt><dfn>declaration</dfn>
1816+
<dt><dfn export>declaration</dfn>
18171817
<dd>
18181818
A declaration has a name,
18191819
a value consisting of a list of component values,
@@ -1826,7 +1826,7 @@ Parsing</h2>
18261826
instead, it is a product of where the declaration appears,
18271827
and is defined by the respective specifications defining the given rule.)
18281828

1829-
<dt><dfn>component value</dfn>
1829+
<dt><dfn export>component value</dfn>
18301830
<dd>
18311831
A component value is one of the preserved tokens,
18321832
a function,
@@ -1850,12 +1850,12 @@ Parsing</h2>
18501850
to define more fine-grainted error-handling
18511851
than just dropping an entire declaration or block.
18521852

1853-
<dt><dfn>function</dfn>
1853+
<dt><dfn export>function</dfn>
18541854
<dd>
18551855
A function has a name
18561856
and a value consisting of a list of component values.
18571857

1858-
<dt><dfn>simple block</dfn>
1858+
<dt><dfn export>simple block</dfn>
18591859
<dd>
18601860
A simple block has an associated token (either a <a href="#tokendef-open-square">&lt;[-token></a>, <a href="#tokendef-open-paren">&lt;(-token></a>, or <a href="#tokendef-open-curly">&lt;{-token></a>)
18611861
and a value consisting of a list of component values.
@@ -2036,7 +2036,7 @@ Definitions</h3>
20362036
instead do nothing
20372037
(retain the <a>current input token</a> unchanged).
20382038

2039-
<dt><dfn>ASCII case-insensitive</dfn>
2039+
<dt><dfn export>ASCII case-insensitive</dfn>
20402040
<dd>
20412041
When two strings are to be matched ASCII case-insensitively,
20422042
temporarily convert both of them to ASCII lower-case form

css-syntax/Overview.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2825,7 +2825,7 @@ <h2 class="heading settled heading" data-level=5 id=parsing><span class=secno>5
28252825
<p> The items that can appear in the tree are:
28262826

28272827
<dl>
2828-
<dt><dfn data-dfn-type=dfn data-noexport="" id=at-rule>at-rule<a class=self-link href=#at-rule></a></dfn>
2828+
<dt><dfn data-dfn-type=dfn data-export="" id=at-rule>at-rule<a class=self-link href=#at-rule></a></dfn>
28292829
<dd>
28302830
An at-rule has a name,
28312831
a prelude consisting of a list of component values,
@@ -2837,7 +2837,7 @@ <h2 class="heading settled heading" data-level=5 id=parsing><span class=secno>5
28372837
how to parse it
28382838
(preferably using one of the parser algorithms or entry points defined in this specification).
28392839

2840-
<dt><dfn data-dfn-type=dfn data-noexport="" id=qualified-rule>qualified rule<a class=self-link href=#qualified-rule></a></dfn>
2840+
<dt><dfn data-dfn-type=dfn data-export="" id=qualified-rule>qualified rule<a class=self-link href=#qualified-rule></a></dfn>
28412841
<dd>
28422842
A qualified rule has
28432843
a prelude consisting of a list of component values,
@@ -2847,7 +2847,7 @@ <h2 class="heading settled heading" data-level=5 id=parsing><span class=secno>5
28472847
where the prelude is a selector <a data-biblio-type=informative data-link-type=biblio href=#select title=select>[SELECT]</a>
28482848
and the block a <a data-link-type=dfn href=#parse-a-list-of-declarations0 title="parse a list of declarations">list of declarations</a>.
28492849

2850-
<dt><dfn data-dfn-type=dfn data-noexport="" id=declaration>declaration<a class=self-link href=#declaration></a></dfn>
2850+
<dt><dfn data-dfn-type=dfn data-export="" id=declaration>declaration<a class=self-link href=#declaration></a></dfn>
28512851
<dd>
28522852
A declaration has a name,
28532853
a value consisting of a list of component values,
@@ -2860,7 +2860,7 @@ <h2 class="heading settled heading" data-level=5 id=parsing><span class=secno>5
28602860
instead, it is a product of where the declaration appears,
28612861
and is defined by the respective specifications defining the given rule.)
28622862

2863-
<dt><dfn data-dfn-type=dfn data-noexport="" id=component-value>component value<a class=self-link href=#component-value></a></dfn>
2863+
<dt><dfn data-dfn-type=dfn data-export="" id=component-value>component value<a class=self-link href=#component-value></a></dfn>
28642864
<dd>
28652865
A component value is one of the preserved tokens,
28662866
a function,
@@ -2884,12 +2884,12 @@ <h2 class="heading settled heading" data-level=5 id=parsing><span class=secno>5
28842884
to define more fine-grainted error-handling
28852885
than just dropping an entire declaration or block.
28862886

2887-
<dt><dfn data-dfn-type=dfn data-noexport="" id=function>function<a class=self-link href=#function></a></dfn>
2887+
<dt><dfn data-dfn-type=dfn data-export="" id=function>function<a class=self-link href=#function></a></dfn>
28882888
<dd>
28892889
A function has a name
28902890
and a value consisting of a list of component values.
28912891

2892-
<dt><dfn data-dfn-type=dfn data-noexport="" id=simple-block>simple block<a class=self-link href=#simple-block></a></dfn>
2892+
<dt><dfn data-dfn-type=dfn data-export="" id=simple-block>simple block<a class=self-link href=#simple-block></a></dfn>
28932893
<dd>
28942894
A simple block has an associated token (either a <a href=#tokendef-open-square>&lt;[-token&gt;</a>, <a href=#tokendef-open-paren>&lt;(-token&gt;</a>, or <a href=#tokendef-open-curly>&lt;{-token&gt;</a>)
28952895
and a value consisting of a list of component values.
@@ -3549,7 +3549,7 @@ <h3 class="heading settled heading" data-level=5.2 id=parser-definitions><span c
35493549
instead do nothing
35503550
(retain the <a data-link-type=dfn href=#current-input-token title="current input token">current input token</a> unchanged).
35513551

3552-
<dt><dfn data-dfn-type=dfn data-noexport="" id=ascii-case-insensitive>ASCII case-insensitive<a class=self-link href=#ascii-case-insensitive></a></dfn>
3552+
<dt><dfn data-dfn-type=dfn data-export="" id=ascii-case-insensitive>ASCII case-insensitive<a class=self-link href=#ascii-case-insensitive></a></dfn>
35533553
<dd>
35543554
When two strings are to be matched ASCII case-insensitively,
35553555
temporarily convert both of them to ASCII lower-case form

0 commit comments

Comments
 (0)