- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 24 Oct 2009 22:28:44 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv3723
Modified Files:
Overview.html
Log Message:
Correct the rules for parsing dimension values to actually say whether they're lengths or percentages. (whatwg r4312)
Index: Overview.html
===================================================================
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:28:46 UTC