HTML5 Tracker

Diff (omit for latest revision)
Filter

Short URL: http://html5.org/r/6232

SVNBugCommentTime (UTC)
6232[Gecko] [Internet Explorer] [Opera] [Webkit] [Tools] This wasn't checking that the 'seconds' component was only two characters long.2011-06-15 05:55
Index: source
===================================================================
--- source	(revision 6231)
+++ source	(revision 6232)
@@ -4553,8 +4553,9 @@
      <li><p><span>Collect a sequence of characters</span> that are
      either characters in the range U+0030 DIGIT ZERO (0) to U+0039
      DIGIT NINE (9) or U+002E FULL STOP characters. If the collected
-     sequence has more than one U+002E FULL STOP characters, or if the
-     last character in the sequence is a U+002E FULL STOP character,
+     sequence is three characters long, or if it is longer than three
+     characters long and the third character is not a U+002E FULL STOP
+     character, or if it has more than one U+002E FULL STOP character,
      then fail. Otherwise, let the collected string be <var
      title="">second</var> instead of its previous value.</p></li>
 

|