hixie: Correct the rules for parsing dimension values to actually say whether they're lengths or percentages. (whatwg r4312)

hixie: Correct the rules for parsing dimension values to actually say
whether they're lengths or percentages. (whatwg r4312)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.3447&r2=1.3448&f=h
http://html5.org/tools/web-apps-tracker?from=4311&to=4312

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3447
retrieving revision 1.3448
diff -u -d -r1.3447 -r1.3448
--- Overview.html 24 Oct 2009 22:25:18 -0000 1.3447
+++ Overview.html 24 Oct 2009 22:28:41 -0000 1.3448
@@ -2730,8 +2730,8 @@
    U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), and interpret the
    resulting sequence as a base-ten integer. Let <var title="">value</var> be that number.</li>
 
-   <li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return <var title="">value</var> as an
-   integer.</li>
+   <li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return <var title="">value</var> as a
+   length.</li>
 
    <li>
 
@@ -2743,7 +2743,7 @@
 
      <li><p>If the character indicated by <var title="">position</var>
      is not one of U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9),
-     then return <var title="">value</var> as an integer.</li>
+     then return <var title="">value</var> as a length.</li>
 
      <li><p><a href="#collect-a-sequence-of-characters">Collect a sequence of characters</a> in the range
      U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9). Let <var title="">length</var> be the number of characters collected. Let

Received on Saturday, 24 October 2009 22:29:21 UTC