Skip to content

Commit 7781d0f

Browse files
committed
[css-syntax] Error in 'consume an ident-like token' - needed to consume a string token, not reconsume the current input code point.
1 parent 548ba07 commit 7781d0f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

css-syntax/Overview.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1209,7 +1209,7 @@ Consume an ident-like token</h4>
12091209
consume it.
12101210
If the <a>next input token</a> is U+0022 QUOTATION MARK (")
12111211
or U+0027 APOSTROPHE (&apos;),
1212-
<a>reconsume the current input code point</a>,
1212+
<a>consume a string token</a>,
12131213
then create a <<function-token>>
12141214
with its value set to the returned string
12151215
and return it.

css-syntax/Overview.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
</p>
5959
<h1 class="p-name no-ref" id=title>CSS Syntax Module Level 3</h1>
6060
<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=20140723>23 July 2014</span></span></span></h2>
61+
<span class=dt-updated><span class=value-title title=20140724>24 July 2014</span></span></span></h2>
6262
<div data-fill-with=spec-metadata><dl>
6363
<dt>This version:
6464
<dd><a class=u-url href=http://dev.w3.org/csswg/css-syntax/>http://dev.w3.org/csswg/css-syntax/</a>
@@ -2301,7 +2301,7 @@ <h4 class="heading settled heading" data-level=4.3.4 id=consume-an-ident-like-to
23012301
consume it.
23022302
If the <a data-link-type=dfn href=#next-input-token title="next input token">next input token</a> is U+0022 QUOTATION MARK (")
23032303
or U+0027 APOSTROPHE ('),
2304-
<a data-link-type=dfn href=#reconsume-the-current-input-code-point title="reconsume the current input code point">reconsume the current input code point</a>,
2304+
<a data-link-type=dfn href=#consume-a-string-token0 title="consume a string token">consume a string token</a>,
23052305
then create a <a class="production css-code" data-link-type=type href=#typedef-function-token title="<function-token>">&lt;function-token&gt;</a>
23062306
with its value set to the returned string
23072307
and return it.

0 commit comments

Comments
 (0)