Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[e] (0) Disallow lastModified to return year 0002009.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=8054

git-svn-id: http://svn.whatwg.org/webapps@4349 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Oct 27, 2009
1 parent 785fdac commit 8396069
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
7 changes: 4 additions & 3 deletions complete.html
Expand Up @@ -7050,9 +7050,10 @@ <h4 id=resource-metadata-management><span class=secno>3.1.3 </span><dfn>Resource
</ol><p>All the numeric components above, other than the year, must be
given as two digits in the range U+0030 DIGIT ZERO (0) to U+0039
DIGIT NINE (9) representing the number in base ten, zero-padded if
necessary. The year must be given as four or more digits in the
range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9) representing
the number in base ten, zero-padded if necessary.</p>
necessary. The year must be given as the shortest possible string of
four or more digits in the range U+0030 DIGIT ZERO (0) to U+0039
DIGIT NINE (9) representing the number in base ten, zero-padded if
necessary.</p>

<p>The <code>Document</code>'s source file's last modification date
and time must be derived from relevant features of the networking
Expand Down
7 changes: 4 additions & 3 deletions index
Expand Up @@ -6868,9 +6868,10 @@ interface <dfn id=htmldocument>HTMLDocument</dfn> {
</ol><p>All the numeric components above, other than the year, must be
given as two digits in the range U+0030 DIGIT ZERO (0) to U+0039
DIGIT NINE (9) representing the number in base ten, zero-padded if
necessary. The year must be given as four or more digits in the
range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9) representing
the number in base ten, zero-padded if necessary.</p>
necessary. The year must be given as the shortest possible string of
four or more digits in the range U+0030 DIGIT ZERO (0) to U+0039
DIGIT NINE (9) representing the number in base ten, zero-padded if
necessary.</p>

<p>The <code>Document</code>'s source file's last modification date
and time must be derived from relevant features of the networking
Expand Down
7 changes: 4 additions & 3 deletions source
Expand Up @@ -6818,9 +6818,10 @@ interface <dfn>HTMLDocument</dfn> {
<p>All the numeric components above, other than the year, must be
given as two digits in the range U+0030 DIGIT ZERO (0) to U+0039
DIGIT NINE (9) representing the number in base ten, zero-padded if
necessary. The year must be given as four or more digits in the
range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9) representing
the number in base ten, zero-padded if necessary.</p>
necessary. The year must be given as the shortest possible string of
four or more digits in the range U+0030 DIGIT ZERO (0) to U+0039
DIGIT NINE (9) representing the number in base ten, zero-padded if
necessary.</p>

<p>The <code>Document</code>'s source file's last modification date
and time must be derived from relevant features of the networking
Expand Down

0 comments on commit 8396069

Please sign in to comment.