|
54 | 54 | </p> |
55 | 55 | <h1 class="p-name no-ref" id=title>CSS Syntax Module Level 3</h1> |
56 | 56 | <h2 class="no-num no-toc no-ref heading settled heading" id=subtitle><span class=content>Editor’s Draft, |
57 | | - <span class=dt-updated><span class=value-title title=20131114>14 November 2013</span></span></span></h2> |
| 57 | + <span class=dt-updated><span class=value-title title=20131202>2 December 2013</span></span></span></h2> |
58 | 58 | <div data-fill-with=spec-metadata><dl><dt>This version:<dd><a class=u-url href=http://dev.w3.org/csswg/css-syntax/>http://dev.w3.org/csswg/css-syntax/</a><dt>Latest version:<dd><a href=http://www.w3.org/TR/css-syntax-3/>http://www.w3.org/TR/css-syntax-3/</a><dt>Editor’s Draft:<dd><a href=http://dev.w3.org/csswg/css-syntax/>http://dev.w3.org/csswg/css-syntax/</a><dt>Previous Versions:<dd><a href=http://www.w3.org/TR/2013/WD-css-syntax-3-20131105/ rel=previous>http://www.w3.org/TR/2013/WD-css-syntax-3-20131105/</a><dd><a href=http://www.w3.org/TR/2013/WD-css-syntax-3-20130919/ rel=previous>http://www.w3.org/TR/2013/WD-css-syntax-3-20130919/</a> |
59 | 59 | <dt>Feedback:</dt> |
60 | 60 | <dd><a href="mailto:www-style@w3.org?subject=%5Bcss-syntax%5D%20feedback">www-style@w3.org</a> |
@@ -1805,97 +1805,97 @@ <h3 class="heading settled heading" data-level=4.2 id=tokenizer-definitions><spa |
1805 | 1805 |
|
1806 | 1806 | <p> This section defines several terms used during the tokenization phase. |
1807 | 1807 |
|
1808 | | - <dl> |
1809 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=code-point>code point<a class=self-link href=#code-point></a></dfn> |
| 1808 | + <dl data-export=""> |
| 1809 | + <dt><dfn data-dfn-type=dfn data-export="" id=code-point>code point<a class=self-link href=#code-point></a></dfn> |
1810 | 1810 | <dd> |
1811 | 1811 | A <a href=http://unicode.org/glossary/#code_point>Unicode code point</a>. |
1812 | 1812 | Any value in the Unicode codespace; that is, the range of integers from 0 to (hexadecimal) 10FFFF. |
1813 | 1813 |
|
1814 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=next-input-code-point>next input code point<a class=self-link href=#next-input-code-point></a></dfn> |
| 1814 | + <dt><dfn data-dfn-type=dfn data-export="" id=next-input-code-point>next input code point<a class=self-link href=#next-input-code-point></a></dfn> |
1815 | 1815 | <dd> |
1816 | 1816 | The first <a data-link-type=dfn href=#code-point title="code point">code point</a> in the input stream that has not yet been consumed. |
1817 | 1817 |
|
1818 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=current-input-code-point>current input code point<a class=self-link href=#current-input-code-point></a></dfn> |
| 1818 | + <dt><dfn data-dfn-type=dfn data-export="" id=current-input-code-point>current input code point<a class=self-link href=#current-input-code-point></a></dfn> |
1819 | 1819 | <dd> |
1820 | 1820 | The last <a data-link-type=dfn href=#code-point title="code point">code point</a> to have been consumed. |
1821 | 1821 |
|
1822 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=reconsume-the-current-input-code-point>reconsume the current input code point<a class=self-link href=#reconsume-the-current-input-code-point></a></dfn> |
| 1822 | + <dt><dfn data-dfn-type=dfn data-export="" id=reconsume-the-current-input-code-point>reconsume the current input code point<a class=self-link href=#reconsume-the-current-input-code-point></a></dfn> |
1823 | 1823 | <dd> |
1824 | 1824 | Push the <a data-link-type=dfn href=#current-input-code-point title="current input code point">current input code point</a> back onto the front of the input stream, |
1825 | 1825 | so that the next time you are instructed to consume the <a data-link-type=dfn href=#next-input-code-point title="next input code point">next input code point</a>, |
1826 | 1826 | it will instead reconsume the <a data-link-type=dfn href=#current-input-code-point title="current input code point">current input code point</a>. |
1827 | 1827 |
|
1828 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=eof-code-point>EOF code point<a class=self-link href=#eof-code-point></a></dfn> |
| 1828 | + <dt><dfn data-dfn-type=dfn data-export="" id=eof-code-point>EOF code point<a class=self-link href=#eof-code-point></a></dfn> |
1829 | 1829 | <dd> |
1830 | 1830 | A conceptual <a data-link-type=dfn href=#code-point title="code point">code point</a> representing the end of the input stream. |
1831 | 1831 | Whenever the input stream is empty, |
1832 | 1832 | the <a data-link-type=dfn href=#next-input-code-point title="next input code point">next input code point</a> is always an EOF code point. |
1833 | 1833 |
|
1834 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=digit>digit<a class=self-link href=#digit></a></dfn> |
| 1834 | + <dt><dfn data-dfn-type=dfn data-export="" id=digit>digit<a class=self-link href=#digit></a></dfn> |
1835 | 1835 | <dd> |
1836 | 1836 | A <a data-link-type=dfn href=#code-point title="code point">code point</a> between U+0030 DIGIT ZERO (0) and U+0039 DIGIT NINE (9). |
1837 | 1837 |
|
1838 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=hex-digit>hex digit<a class=self-link href=#hex-digit></a></dfn> |
| 1838 | + <dt><dfn data-dfn-type=dfn data-export="" id=hex-digit>hex digit<a class=self-link href=#hex-digit></a></dfn> |
1839 | 1839 | <dd> |
1840 | 1840 | A <a data-link-type=dfn href=#digit title=digit>digit</a>, |
1841 | 1841 | or a <a data-link-type=dfn href=#code-point title="code point">code point</a> between U+0041 LATIN CAPITAL LETTER A (A) and U+0046 LATIN CAPITAL LETTER F (F), |
1842 | 1842 | or a <a data-link-type=dfn href=#code-point title="code point">code point</a> between U+0061 LATIN SMALL LETTER A (a) and U+0066 LATIN SMALL LETTER F (f). |
1843 | 1843 |
|
1844 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=uppercase-letter>uppercase letter<a class=self-link href=#uppercase-letter></a></dfn> |
| 1844 | + <dt><dfn data-dfn-type=dfn data-export="" id=uppercase-letter>uppercase letter<a class=self-link href=#uppercase-letter></a></dfn> |
1845 | 1845 | <dd> |
1846 | 1846 | A <a data-link-type=dfn href=#code-point title="code point">code point</a> between U+0041 LATIN CAPITAL LETTER A (A) and U+005A LATIN CAPITAL LETTER Z (Z). |
1847 | 1847 |
|
1848 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=lowercase-letter>lowercase letter<a class=self-link href=#lowercase-letter></a></dfn> |
| 1848 | + <dt><dfn data-dfn-type=dfn data-export="" id=lowercase-letter>lowercase letter<a class=self-link href=#lowercase-letter></a></dfn> |
1849 | 1849 | <dd> |
1850 | 1850 | A <a data-link-type=dfn href=#code-point title="code point">code point</a> between U+0061 LATIN SMALL LETTER A (a) and U+007A LATIN SMALL LETTER Z (z). |
1851 | 1851 |
|
1852 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=letter>letter<a class=self-link href=#letter></a></dfn> |
| 1852 | + <dt><dfn data-dfn-type=dfn data-export="" id=letter>letter<a class=self-link href=#letter></a></dfn> |
1853 | 1853 | <dd> |
1854 | 1854 | An <a data-link-type=dfn href=#uppercase-letter title="uppercase letter">uppercase letter</a> |
1855 | 1855 | or a <a data-link-type=dfn href=#lowercase-letter title="lowercase letter">lowercase letter</a>. |
1856 | 1856 |
|
1857 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=non-ascii-code-point>non-ASCII code point<a class=self-link href=#non-ascii-code-point></a></dfn> |
| 1857 | + <dt><dfn data-dfn-type=dfn data-export="" id=non-ascii-code-point>non-ASCII code point<a class=self-link href=#non-ascii-code-point></a></dfn> |
1858 | 1858 | <dd> |
1859 | 1859 | A <a data-link-type=dfn href=#code-point title="code point">code point</a> with a value equal to or greater than U+0080 <control>. |
1860 | 1860 |
|
1861 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=name-start-code-point>name-start code point<a class=self-link href=#name-start-code-point></a></dfn> |
| 1861 | + <dt><dfn data-dfn-type=dfn data-export="" id=name-start-code-point>name-start code point<a class=self-link href=#name-start-code-point></a></dfn> |
1862 | 1862 | <dd> |
1863 | 1863 | A <a data-link-type=dfn href=#letter title=letter>letter</a>, |
1864 | 1864 | a <a data-link-type=dfn href=#non-ascii-code-point title="non-ascii code point">non-ASCII code point</a>, |
1865 | 1865 | or U+005F LOW LINE (_). |
1866 | 1866 |
|
1867 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=name-code-point>name code point<a class=self-link href=#name-code-point></a></dfn> |
| 1867 | + <dt><dfn data-dfn-type=dfn data-export="" id=name-code-point>name code point<a class=self-link href=#name-code-point></a></dfn> |
1868 | 1868 | <dd> |
1869 | 1869 | A <a data-link-type=dfn href=#name-start-code-point title="name-start code point">name-start code point</a>, |
1870 | 1870 | A <a data-link-type=dfn href=#digit title=digit>digit</a>, |
1871 | 1871 | or U+002D HYPHEN-MINUS (-). |
1872 | 1872 |
|
1873 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=non-printable-code-point>non-printable code point<a class=self-link href=#non-printable-code-point></a></dfn> |
| 1873 | + <dt><dfn data-dfn-type=dfn data-export="" id=non-printable-code-point>non-printable code point<a class=self-link href=#non-printable-code-point></a></dfn> |
1874 | 1874 | <dd> |
1875 | 1875 | A <a data-link-type=dfn href=#code-point title="code point">code point</a> between U+0000 NULL and U+0008 BACKSPACE, |
1876 | 1876 | or U+000B LINE TABULATION, |
1877 | 1877 | or a <a data-link-type=dfn href=#code-point title="code point">code point</a> between U+000E SHIFT OUT and U+001F INFORMATION SEPARATOR ONE, |
1878 | 1878 | or U+007F DELETE. |
1879 | 1879 |
|
1880 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=newline>newline<a class=self-link href=#newline></a></dfn> |
| 1880 | + <dt><dfn data-dfn-type=dfn data-export="" id=newline>newline<a class=self-link href=#newline></a></dfn> |
1881 | 1881 | <dd> |
1882 | 1882 | U+000A LINE FEED. |
1883 | 1883 | <span class=note> |
1884 | 1884 | Note that U+000D CARRIAGE RETURN and U+000C FORM FEED are not included in this definition, |
1885 | 1885 | as they are converted to U+000A LINE FEED during <a href=#input-preprocessing>preprocessing</a>. |
1886 | 1886 | </span> |
1887 | 1887 |
|
1888 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=whitespace>whitespace<a class=self-link href=#whitespace></a></dfn> |
| 1888 | + <dt><dfn data-dfn-type=dfn data-export="" id=whitespace>whitespace<a class=self-link href=#whitespace></a></dfn> |
1889 | 1889 | <dd>A <a data-link-type=dfn href=#newline title=newline>newline</a>, U+0009 CHARACTER TABULATION, or U+0020 SPACE. |
1890 | 1890 |
|
1891 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=surrogate-code-point>surrogate code point<a class=self-link href=#surrogate-code-point></a></dfn> |
| 1891 | + <dt><dfn data-dfn-type=dfn data-export="" id=surrogate-code-point>surrogate code point<a class=self-link href=#surrogate-code-point></a></dfn> |
1892 | 1892 | <dd> |
1893 | 1893 | A <a data-link-type=dfn href=#code-point title="code point">code point</a> between U+D800 and U+DFFF inclusive. |
1894 | 1894 |
|
1895 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=maximum-allowed-code-point>maximum allowed code point<a class=self-link href=#maximum-allowed-code-point></a></dfn> |
| 1895 | + <dt><dfn data-dfn-type=dfn data-export="" id=maximum-allowed-code-point>maximum allowed code point<a class=self-link href=#maximum-allowed-code-point></a></dfn> |
1896 | 1896 | <dd>The greatest <a data-link-type=dfn href=#code-point title="code point">code point</a> defined by Unicode: U+10FFFF. |
1897 | 1897 |
|
1898 | | - <dt><dfn data-dfn-type=dfn data-noexport="" id=identifier>identifier<a class=self-link href=#identifier></a></dfn> |
| 1898 | + <dt><dfn data-dfn-type=dfn data-export="" id=identifier>identifier<a class=self-link href=#identifier></a></dfn> |
1899 | 1899 | <dd> |
1900 | 1900 | A portion of the CSS source that has the same syntax as an <a class="production css-code" data-link-type=type href=#typedef-ident-token title="<ident-token>"><ident-token></a>. |
1901 | 1901 | Also appears in <a class="production css-code" data-link-type=type href=#typedef-at-keyword-token title="<at-keyword-token>"><at-keyword-token></a>, |
@@ -4977,7 +4977,7 @@ <h3 class="no-num no-ref heading settled heading" id=normative><span class=conte |
4977 | 4977 |
|
4978 | 4978 | <h3 class="no-num no-ref heading settled heading" id=informative><span class=content> |
4979 | 4979 | Informative References</span><a class=self-link href=#informative></a></h3> |
4980 | | -<div data-fill-with=informative-references><dl><dt id=css-variables title=CSS-VARIABLES><a class=self-link href=#css-variables></a>[CSS-VARIABLES]<dd>Tab Atkins Jr.. <a href=http://www.w3.org/TR/2013/WD-css-variables-1-20130620/>CSS Custom Properties for Cascading Variables Module Level 1</a>. 20 June 2013. W3C Working Draft. (Work in progress.) URL: <a href=http://www.w3.org/TR/2013/WD-css-variables-1-20130620/>http://www.w3.org/TR/2013/WD-css-variables-1-20130620/</a><dt id=css3-animations title=CSS3-ANIMATIONS><a class=self-link href=#css3-animations></a>[CSS3-ANIMATIONS]<dd>Dean Jackson; et al. <a href=http://www.w3.org/TR/2013/WD-css3-animations-20130219/>CSS Animations</a>. 19 February 2013. W3C Working Draft. (Work in progress.) URL: <a href=http://www.w3.org/TR/2013/WD-css3-animations-20130219/>http://www.w3.org/TR/2013/WD-css3-animations-20130219/</a><dt id=css3-conditional title=CSS3-CONDITIONAL><a class=self-link href=#css3-conditional></a>[CSS3-CONDITIONAL]<dd>L. David Baron. <a href=http://www.w3.org/TR/2013/CR-css3-conditional-20130404/>CSS Conditional Rules Module Level 3</a>. 4 April 2013. W3C Candidate Recommendation. (Work in progress.) URL: <a href=http://www.w3.org/TR/2013/CR-css3-conditional-20130404/>http://www.w3.org/TR/2013/CR-css3-conditional-20130404/</a><dt id=cssom title=CSSOM><a class=self-link href=#cssom></a>[CSSOM]<dd>Anne van Kesteren. <a href=http://www.w3.org/TR/2011/WD-cssom-20110712/>CSSOM</a>. 12 July 2011. W3C Working Draft. (Work in progress.) URL: <a href=http://www.w3.org/TR/2011/WD-cssom-20110712/>http://www.w3.org/TR/2011/WD-cssom-20110712/</a><dt id=mediaq title=MEDIAQ><a class=self-link href=#mediaq></a>[MEDIAQ]<dd>Florian Rivoal. <a href=http://www.w3.org/TR/2012/REC-css3-mediaqueries-20120619/>Media Queries</a>. 19 June 2012. W3C Recommendation. URL: <a href=http://www.w3.org/TR/2012/REC-css3-mediaqueries-20120619/>http://www.w3.org/TR/2012/REC-css3-mediaqueries-20120619/</a></dl></div> |
| 4980 | +<div data-fill-with=informative-references><dl><dt id=css-variables title=CSS-VARIABLES><a class=self-link href=#css-variables></a>[CSS-VARIABLES]<dd>Tab Atkins Jr.; Luke Macpherson; Daniel Glazman. <a href=http://www.w3.org/TR/2013/WD-css-variables-20130620/>CSS Custom Properties for Cascading Variables Module Level 1</a>. 20 June 2013. W3C Working Draft. (Work in progress.) URL: <a href=http://www.w3.org/TR/2013/WD-css-variables-20130620/>http://www.w3.org/TR/2013/WD-css-variables-20130620/</a><dt id=css3-animations title=CSS3-ANIMATIONS><a class=self-link href=#css3-animations></a>[CSS3-ANIMATIONS]<dd>Dean Jackson; et al. <a href=http://www.w3.org/TR/2013/WD-css3-animations-20130219/>CSS Animations</a>. 19 February 2013. W3C Working Draft. (Work in progress.) URL: <a href=http://www.w3.org/TR/2013/WD-css3-animations-20130219/>http://www.w3.org/TR/2013/WD-css3-animations-20130219/</a><dt id=css3-conditional title=CSS3-CONDITIONAL><a class=self-link href=#css3-conditional></a>[CSS3-CONDITIONAL]<dd>L. David Baron. <a href=http://www.w3.org/TR/2013/CR-css3-conditional-20130404/>CSS Conditional Rules Module Level 3</a>. 4 April 2013. W3C Candidate Recommendation. (Work in progress.) URL: <a href=http://www.w3.org/TR/2013/CR-css3-conditional-20130404/>http://www.w3.org/TR/2013/CR-css3-conditional-20130404/</a><dt id=cssom title=CSSOM><a class=self-link href=#cssom></a>[CSSOM]<dd>Anne van Kesteren. <a href=http://www.w3.org/TR/2011/WD-cssom-20110712/>CSSOM</a>. 12 July 2011. W3C Working Draft. (Work in progress.) URL: <a href=http://www.w3.org/TR/2011/WD-cssom-20110712/>http://www.w3.org/TR/2011/WD-cssom-20110712/</a><dt id=mediaq title=MEDIAQ><a class=self-link href=#mediaq></a>[MEDIAQ]<dd>Florian Rivoal. <a href=http://www.w3.org/TR/2012/REC-css3-mediaqueries-20120619/>Media Queries</a>. 19 June 2012. W3C Recommendation. URL: <a href=http://www.w3.org/TR/2012/REC-css3-mediaqueries-20120619/>http://www.w3.org/TR/2012/REC-css3-mediaqueries-20120619/</a></dl></div> |
4981 | 4981 |
|
4982 | 4982 | <h2 class="no-num no-ref heading settled heading" id=index><span class=content> |
4983 | 4983 | Index</span><a class=self-link href=#index></a></h2> |
|
0 commit comments