|
58 | 58 | </p> |
59 | 59 | <h1 class="p-name no-ref" id=title>CSS Syntax Module Level 3</h1> |
60 | 60 | <h2 class="no-num no-toc no-ref heading settled heading" id=subtitle><span class=content>Editor’s Draft, |
61 | | - <span class=dt-updated><span class=value-title title=20140303>3 March 2014</span></span></span></h2> |
| 61 | + <span class=dt-updated><span class=value-title title=20140304>4 March 2014</span></span></span></h2> |
62 | 62 | <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/2014/CR-css-syntax-3-20140220/ rel=previous>http://www.w3.org/TR/2014/CR-css-syntax-3-20140220/</a><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> |
63 | 63 | <dt>Feedback:</dt> |
64 | 64 | <dd><a href="mailto:www-style@w3.org?subject=%5Bcss-syntax%5D%20feedback">www-style@w3.org</a> |
@@ -3751,29 +3751,25 @@ <h4 class="heading settled heading" data-level=5.3.6 id=parse-a-component-value> |
3751 | 3751 |
|
3752 | 3752 | <ol> |
3753 | 3753 | <li> |
3754 | | - <a data-link-type=dfn href=#consume-the-next-input-token title="consume the next input token">Consume the next input token</a>. |
3755 | | - |
3756 | | - <li> |
3757 | | - While the <a data-link-type=dfn href=#current-input-token title="current input token">current input token</a> is a <a class="production css-code" data-link-type=type href=#typedef-whitespace-token title="<whitespace-token>"><whitespace-token></a>, |
| 3754 | + While the <a data-link-type=dfn href=#next-input-token title="next input token">next input token</a> is a <a class="production css-code" data-link-type=type href=#typedef-whitespace-token title="<whitespace-token>"><whitespace-token></a>, |
3758 | 3755 | <a data-link-type=dfn href=#consume-the-next-input-token title="consume the next input token">consume the next input token</a>. |
3759 | 3756 |
|
3760 | 3757 | <li> |
3761 | | - If the <a data-link-type=dfn href=#current-input-token title="current input token">current input token</a> is an <a class="production css-code" data-link-type=type href=#typedef-eof-token title="<eof-token>"><EOF-token></a>, |
| 3758 | + If the <a data-link-type=dfn href=#next-input-token title="next input token">next input token</a> is an <a class="production css-code" data-link-type=type href=#typedef-eof-token title="<eof-token>"><EOF-token></a>, |
3762 | 3759 | return a syntax error. |
3763 | 3760 |
|
3764 | 3761 | <li> |
3765 | | - <a data-link-type=dfn href=#reconsume-the-current-input-token title="reconsume the current input token">Reconsume the current input token</a>. |
3766 | 3762 | <a data-link-type=dfn href=#consume-a-component-value0 title="consume a component value">Consume a component value</a> |
3767 | 3763 | and let <var>value</var> be the return value. |
3768 | 3764 | If nothing is returned, |
3769 | 3765 | return a syntax error. |
3770 | 3766 |
|
3771 | 3767 | <li> |
3772 | | - While the <a data-link-type=dfn href=#current-input-token title="current input token">current input token</a> is a <a class="production css-code" data-link-type=type href=#typedef-whitespace-token title="<whitespace-token>"><whitespace-token></a>, |
| 3768 | + While the <a data-link-type=dfn href=#next-input-token title="next input token">next input token</a> is a <a class="production css-code" data-link-type=type href=#typedef-whitespace-token title="<whitespace-token>"><whitespace-token></a>, |
3773 | 3769 | <a data-link-type=dfn href=#consume-the-next-input-token title="consume the next input token">consume the next input token</a>. |
3774 | 3770 |
|
3775 | 3771 | <li> |
3776 | | - If the <a data-link-type=dfn href=#current-input-token title="current input token">current input token</a> is an <a class="production css-code" data-link-type=type href=#typedef-eof-token title="<eof-token>"><EOF-token></a>, |
| 3772 | + If the <a data-link-type=dfn href=#next-input-token title="next input token">next input token</a> is an <a class="production css-code" data-link-type=type href=#typedef-eof-token title="<eof-token>"><EOF-token></a>, |
3777 | 3773 | return <var>value</var>. |
3778 | 3774 | Otherwise, |
3779 | 3775 | return a syntax error. |
@@ -4894,6 +4890,10 @@ <h2 class="no-num heading settled heading" id=changes><span class=content> |
4894 | 4890 | <li> |
4895 | 4891 | Fixed a bug in the "Consume a URL token" algorithm, |
4896 | 4892 | where it didn’t consume the quote character starting a string before attempting to consume the string. |
| 4893 | + |
| 4894 | + <li> |
| 4895 | + Fixed a bug in the "Parse a component value" algorithm, |
| 4896 | + where it failed to trim whitespace from the end of the value. |
4897 | 4897 | </ul> |
4898 | 4898 |
|
4899 | 4899 | <p> The following editorial changes were made: |
|
0 commit comments