You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: css-syntax/Overview.bs
+21-21Lines changed: 21 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -794,71 +794,71 @@ Definitions</h3>
794
794
Whenever the input stream is empty,
795
795
the <a>next input code point</a> is always an EOF code point.
796
796
797
-
<dt><dfn>digit</dfn>
797
+
<dt><dfn export>digit</dfn>
798
798
<dd>
799
799
A <a>code point</a> between U+0030 DIGIT ZERO (0) and U+0039 DIGIT NINE (9).
800
800
801
-
<dt><dfn>hex digit</dfn>
801
+
<dt><dfn export>hex digit</dfn>
802
802
<dd>
803
803
A <a>digit</a>,
804
804
or a <a>code point</a> between U+0041 LATIN CAPITAL LETTER A (A) and U+0046 LATIN CAPITAL LETTER F (F),
805
805
or a <a>code point</a> between U+0061 LATIN SMALL LETTER A (a) and U+0066 LATIN SMALL LETTER F (f).
806
806
807
-
<dt><dfn>uppercase letter</dfn>
807
+
<dt><dfn export>uppercase letter</dfn>
808
808
<dd>
809
809
A <a>code point</a> between U+0041 LATIN CAPITAL LETTER A (A) and U+005A LATIN CAPITAL LETTER Z (Z).
810
810
811
-
<dt><dfn>lowercase letter</dfn>
811
+
<dt><dfn export>lowercase letter</dfn>
812
812
<dd>
813
813
A <a>code point</a> between U+0061 LATIN SMALL LETTER A (a) and U+007A LATIN SMALL LETTER Z (z).
814
814
815
-
<dt><dfn>letter</dfn>
815
+
<dt><dfn export>letter</dfn>
816
816
<dd>
817
817
An <a>uppercase letter</a>
818
818
or a <a>lowercase letter</a>.
819
819
820
-
<dt><dfn>non-ASCII code point</dfn>
820
+
<dt><dfn export>non-ASCII code point</dfn>
821
821
<dd>
822
822
A <a>code point</a> with a value equal to or greater than U+0080 <control>.
823
823
824
-
<dt><dfn>name-start code point</dfn>
824
+
<dt><dfn export>name-start code point</dfn>
825
825
<dd>
826
826
A <a>letter</a>,
827
827
a <a>non-ASCII code point</a>,
828
828
or U+005F LOW LINE (_).
829
829
830
-
<dt><dfn>name code point</dfn>
830
+
<dt><dfn export>name code point</dfn>
831
831
<dd>
832
832
A <a>name-start code point</a>,
833
833
A <a>digit</a>,
834
834
or U+002D HYPHEN-MINUS (-).
835
835
836
-
<dt><dfn>non-printable code point</dfn>
836
+
<dt><dfn export>non-printable code point</dfn>
837
837
<dd>
838
838
A <a>code point</a> between U+0000 NULL and U+0008 BACKSPACE,
839
839
or U+000B LINE TABULATION,
840
840
or a <a>code point</a> between U+000E SHIFT OUT and U+001F INFORMATION SEPARATOR ONE,
841
841
or U+007F DELETE.
842
842
843
-
<dt><dfn>newline</dfn>
843
+
<dt><dfn export>newline</dfn>
844
844
<dd>
845
845
U+000A LINE FEED.
846
846
<span class='note'>
847
847
Note that U+000D CARRIAGE RETURN and U+000C FORM FEED are not included in this definition,
848
848
as they are converted to U+000A LINE FEED during <a href="#input-preprocessing">preprocessing</a>.
849
849
</span>
850
850
851
-
<dt><dfn>whitespace</dfn>
851
+
<dt><dfn export>whitespace</dfn>
852
852
<dd>A <a>newline</a>, U+0009 CHARACTER TABULATION, or U+0020 SPACE.
853
853
854
-
<dt><dfn>surrogate code point</dfn>
854
+
<dt><dfn export>surrogate code point</dfn>
855
855
<dd>
856
856
A <a>code point</a> between U+D800 and U+DFFF inclusive.
857
857
858
-
<dt><dfn>maximum allowed code point</dfn>
858
+
<dt><dfn export>maximum allowed code point</dfn>
859
859
<dd>The greatest <a>code point</a> defined by Unicode: U+10FFFF.
860
860
861
-
<dt><dfn>identifier</dfn>
861
+
<dt><dfn export>identifier</dfn>
862
862
<dd>
863
863
A portion of the CSS source that has the same syntax as an <<ident-token>>.
864
864
Also appears in <<at-keyword-token>>,
@@ -1791,7 +1791,7 @@ Parsing</h2>
1791
1791
The items that can appear in the tree are:
1792
1792
1793
1793
<dl>
1794
-
<dt><dfn>at-rule</dfn>
1794
+
<dt><dfn export>at-rule</dfn>
1795
1795
<dd>
1796
1796
An at-rule has a name,
1797
1797
a prelude consisting of a list of component values,
@@ -1803,7 +1803,7 @@ Parsing</h2>
1803
1803
how to parse it
1804
1804
(preferably using one of the parser algorithms or entry points defined in this specification).
1805
1805
1806
-
<dt><dfn>qualified rule</dfn>
1806
+
<dt><dfn export>qualified rule</dfn>
1807
1807
<dd>
1808
1808
A qualified rule has
1809
1809
a prelude consisting of a list of component values,
@@ -1813,7 +1813,7 @@ Parsing</h2>
1813
1813
where the prelude is a selector [[SELECT]]
1814
1814
and the block a <i title="parse a list of declarations">list of declarations</i>.
1815
1815
1816
-
<dt><dfn>declaration</dfn>
1816
+
<dt><dfn export>declaration</dfn>
1817
1817
<dd>
1818
1818
A declaration has a name,
1819
1819
a value consisting of a list of component values,
@@ -1826,7 +1826,7 @@ Parsing</h2>
1826
1826
instead, it is a product of where the declaration appears,
1827
1827
and is defined by the respective specifications defining the given rule.)
1828
1828
1829
-
<dt><dfn>component value</dfn>
1829
+
<dt><dfn export>component value</dfn>
1830
1830
<dd>
1831
1831
A component value is one of the preserved tokens,
1832
1832
a function,
@@ -1850,12 +1850,12 @@ Parsing</h2>
1850
1850
to define more fine-grainted error-handling
1851
1851
than just dropping an entire declaration or block.
1852
1852
1853
-
<dt><dfn>function</dfn>
1853
+
<dt><dfn export>function</dfn>
1854
1854
<dd>
1855
1855
A function has a name
1856
1856
and a value consisting of a list of component values.
1857
1857
1858
-
<dt><dfn>simple block</dfn>
1858
+
<dt><dfn export>simple block</dfn>
1859
1859
<dd>
1860
1860
A simple block has an associated token (either a <a href="#tokendef-open-square"><[-token></a>, <a href="#tokendef-open-paren"><(-token></a>, or <a href="#tokendef-open-curly"><{-token></a>)
1861
1861
and a value consisting of a list of component values.
@@ -2036,7 +2036,7 @@ Definitions</h3>
2036
2036
instead do nothing
2037
2037
(retain the <a>current input token</a> unchanged).
2038
2038
2039
-
<dt><dfn>ASCII case-insensitive</dfn>
2039
+
<dt><dfn export>ASCII case-insensitive</dfn>
2040
2040
<dd>
2041
2041
When two strings are to be matched ASCII case-insensitively,
2042
2042
temporarily convert both of them to ASCII lower-case form
A simple block has an associated token (either a <ahref=#tokendef-open-square><[-token></a>, <ahref=#tokendef-open-paren><(-token></a>, or <ahref=#tokendef-open-curly><{-token></a>)
2895
2895
and a value consisting of a list of component values.
0 commit comments