HTML5 Tracker

Diff (omit for latest revision)
Filter

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

SVNBugCommentTime (UTC)
1146typos in the <time> element definitions; hyperlink DOMTimeStamp to DOM3 Core2007-12-11 10:35
Index: source
===================================================================
--- source	(revision 1145)
+++ source	(revision 1146)
@@ -643,6 +643,9 @@
   event-DOMActivate, etc, here, and just have the section be a general
   "defined in other specifications" section -->
 
+  <p>The interface <dfn><code>DOMTimeStamp</code></dfn> is defined in
+  DOM3 Core. <a href="#refsDOM3CORE">[DOM3CORE]</a></p>
+
   <p>The term <dfn>activation behavior</dfn> is used as defined in the
   DOM3 Events specification. <a
   href="#refsDOM3EVENTS">[DOM3EVENTS]</a> <span class="big-issue">At
@@ -8705,9 +8708,9 @@
    <dd>
 <pre class="idl">interface <dfn>HTMLTimeElement</dfn> : <span>HTMLElement</span> {
            attribute DOMString <span title="dom-time-datetime">dateTime</span>;
-  readonly attribute DOMTimeStamp <span title="dom-time-date">date</span>;
-  readonly attribute DOMTimeStamp <span title="dom-time-time">time</span>;
-  readonly attribute DOMTimeStamp <span title="dom-time-timezone">timezone</span>;
+  readonly attribute <span>DOMTimeStamp</span> <span title="dom-time-date">date</span>;
+  readonly attribute <span>DOMTimeStamp</span> <span title="dom-time-time">time</span>;
+  readonly attribute <span>DOMTimeStamp</span> <span title="dom-time-timezone">timezone</span>;
 };</pre>
    </dd>
   </dl>
@@ -8737,10 +8740,10 @@
 
   <ol>
 
-   <li>If the <code title="attr-time-datetime">datetime</code> attribute
-   is present, then parse it according to the rules for parsing <span
-   title="date or time string in attributes">date or time strings in
-   content</span>, and let the result be <var
+   <li>If the <code title="attr-time-datetime">datetime</code>
+   attribute is present, then parse it according to the rules for
+   parsing <span title="date or time string in attributes">date or
+   time strings in attributes</span>, and let the result be <var
    title="">result</var>.</li>
 
    <li>Otherwise, parse the element's <code>textContent</code>

|