- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 26 Apr 2009 06:40:22 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv21494 Modified Files: Overview.html Log Message: lastModified returns current time according to IE, not the epoch. Also, never foster parent <input type=hidden>, <style>, or <script>. (whatwg r2988) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2151 retrieving revision 1.2152 diff -u -d -r1.2151 -r1.2152 --- Overview.html 25 Apr 2009 22:47:40 -0000 1.2151 +++ Overview.html 26 Apr 2009 06:40:19 -0000 1.2152 @@ -148,7 +148,7 @@ <h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2> <!--ZZZ:--> <!--<h2 class="no-num no-toc">W3C Working Draft 23 April 2009</h2>--> - <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 25 April 2009</h2> + <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 26 April 2009</h2> <!--:ZZZ--> <dl><!-- ZZZ: update the month/day (twice), (un)comment out <dt>This Version:</dt> @@ -241,7 +241,7 @@ track. <!--ZZZ:--> <!--This specification is the 23 April 2009 Working Draft.--> - This specification is the 25 April 2009 Editor's Draft. + This specification is the 26 April 2009 Editor's Draft. <!--:ZZZ--> </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is also being produced by the <a href="http://www.whatwg.org/">WHATWG</a>. The two specifications are identical from the table of contents onwards.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><p>This specification is intended to replace (be a new version of) @@ -6402,8 +6402,8 @@ <dd> <p>Returns the date of the last modification to the document, as reported by the server, in the form "<code title="">MM/DD/YYYY hh:mm:ss</code>".</p> - <p>If the last modification date is not known, it is reported as - "<code title="">01/01/1970 00:00:00</code>" + <p>If the last modification date is not known, the current time is + returned instead.</p> </dd> </dl><div class="impl"> @@ -6445,9 +6445,9 @@ <p>The <code>Document</code>'s source file's last modification date and time must be derived from relevant features of the networking protocols used, e.g. from the value of the HTTP <code title="">Last-Modified</code> header of the document, or from - metadata in the file system for local files. If the last modification - date and time are not known, the attribute must return the string - "<code title="">01/01/1970 00:00:00</code>".</p> + metadata in the file system for local files. If the last + modification date and time are not known, the attribute must return + the current date and time in the above format.</p> <hr></div><dl class="domintro"><dt><var title="">document</var> . <code title="dom-document-compatmode"><a href="#dom-document-compatmode">compatMode</a></code></dt> <dd> @@ -51412,12 +51412,8 @@ <dt>A start tag whose tag name is one of: "style", "script"</dt> <dd> - <p>If the <a href="#current-table">current table</a> is <a href="#tainted">tainted</a> then - act as described in the "anything else" entry below.</p> - - <p>Otherwise, process the token <a href="#using-the-rules-for">using the rules for</a> - the "<a href="#parsing-main-inhead" title="insertion mode: in head">in - head</a>" <a href="#insertion-mode">insertion mode</a>.</p> + <p>Process the token <a href="#using-the-rules-for">using the rules for</a> the "<a href="#parsing-main-inhead" title="insertion mode: in head">in head</a>" <a href="#insertion-mode">insertion + mode</a>.</p> </dd> @@ -51426,8 +51422,7 @@ <p>If the token does not have an attribute with the name "type", or if it does, but that attribute's value is not an <a href="#ascii-case-insensitive">ASCII - case-insensitive</a> match for the string "<code title="">hidden</code>", or, if the <a href="#current-table">current table</a> is - <a href="#tainted">tainted</a>, then: act as described in the "anything + case-insensitive</a> match for the string "<code title="">hidden</code>", then: act as described in the "anything else" entry below.</p> <p>Otherwise:</p>
Received on Sunday, 26 April 2009 06:40:31 UTC