Skip to content

Commit dec54fd

Browse files
committed
Fix example of parsing '12e3' without the flag actually be correct.
--HG-- extra : rebase_source : 9f03ab366be524222091e952dbaec40ece7c2c46
1 parent dfd96bc commit dec54fd

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

css3-syntax/Overview.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
<h1>CSS Syntax Module Level 3</h1>
3838

39-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 20 April 2012</h2>
39+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 27 April 2012</h2>
4040

4141
<dl>
4242
<dt>This version:
@@ -583,7 +583,7 @@ <h4 id=tokenizer-flags><span class=secno>3.4.1. </span> Tokenizer Flags</h4>
583583
<dd> This flag is set if the tokenizer supports scientific notation in
584584
numbers. When this is set, a sequence of characters like "12e3" will
585585
tokenize as a number token with the value "12000". (Without the flag,
586-
they would tokenize as the dimension "12e" followed by the number "3".)
586+
they would tokenize as a dimension token with value "12" and unit "e3".)
587587
<p> Currently, this flag is only set when parsing SVG presentational
588588
attributes.
589589

css3-syntax/Overview.src.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ <h4>
388388
This flag is set if the tokenizer supports scientific notation in numbers.
389389
When this is set, a sequence of characters like "12e3" will tokenize
390390
as a number token with the value "12000".
391-
(Without the flag, they would tokenize as the dimension "12e" followed by the number "3".)
391+
(Without the flag, they would tokenize as a dimension token with value "12" and unit "e3".)
392392

393393
<p>
394394
Currently, this flag is only set when parsing SVG presentational attributes.

0 commit comments

Comments
 (0)