- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 16 Jun 2011 04:55:45 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv17550
Modified Files:
Overview.html
Log Message:
Try to clarify this by switching the order around. (whatwg r6239)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.5002
retrieving revision 1.5003
diff -u -d -r1.5002 -r1.5003
--- Overview.html 15 Jun 2011 23:56:22 -0000 1.5002
+++ Overview.html 16 Jun 2011 04:55:40 -0000 1.5003
@@ -318,7 +318,7 @@
<h1>HTML5</h1>
<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>
- <h2 class="no-num no-toc" id="editor-s-draft-15-june-2011">Editor's Draft 15 June 2011</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-16-june-2011">Editor's Draft 16 June 2011</h2>
<dl><dt>Latest Published Version:</dt>
<dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd>
<dt>Latest Editor's Draft:</dt>
@@ -464,7 +464,7 @@
Group</a> is the W3C working group responsible for this
specification's progress along the W3C Recommendation
track.
- This specification is the 15 June 2011 Editor's Draft.
+ This specification is the 16 June 2011 Editor's Draft.
</p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group
actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working
group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
@@ -1053,7 +1053,9 @@
<li><a href="#calling-scripts"><span class="secno">6.1.3.2 </span>Calling scripts</a></li>
<li><a href="#creating-scripts"><span class="secno">6.1.3.3 </span>Creating scripts</a></li>
<li><a href="#killing-scripts"><span class="secno">6.1.3.4 </span>Killing scripts</a></li>
- <li><a href="#runtime-script-errors"><span class="secno">6.1.3.5 </span>Runtime script errors</a></ol></li>
+ <li><a href="#runtime-script-errors"><span class="secno">6.1.3.5 </span>Runtime script errors</a>
+ <ol>
+ <li><a href="#runtime-script-errors"><span class="secno">6.1.3.5.1 </span>Runtime script errors in documents</a></ol></ol></li>
<li><a href="#event-loops"><span class="secno">6.1.4 </span>Event loops</a>
<ol>
<li><a href="#definitions-1"><span class="secno">6.1.4.1 </span>Definitions</a></li>
@@ -49121,14 +49123,7 @@
<h5 id="runtime-script-errors"><span class="secno">6.1.3.5 </span>Runtime script errors</h5>
- <p>Whenever an uncaught runtime script error occurs in one of the
- scripts associated with a <code><a href="#document">Document</a></code>, the user agent must
- <a href="#report-the-error">report the error</a> using the <code title="handler-window-onerror"><a href="#handler-window-onerror">onerror</a></code> <a href="#event-handlers" title="event
- handlers">event handler</a> of the <a href="#script-s-global-object">script's global
- object</a>. If the error is still <i title="concept-error-nothandled"><a href="#concept-error-nothandled">not handled</a></i> after this, then
- the error may be reported to the user.</p>
-
- <hr><p>When the user agent is required to <dfn id="report-the-error" title="report the
+ <p>When the user agent is required to <dfn id="report-the-error" title="report the
error">report an error</dfn> <var title="">error</var> using the
<a href="#event-handlers" title="event handlers">event handler</a> <var title="">onerror</var>, it must run these steps, after which the
error is either <dfn id="concept-error-handled" title="concept-error-handled"><i>handled</i></dfn> or <dfn id="concept-error-nothandled" title="concept-error-nothandled"><i>not handled</i></dfn>:</p>
@@ -49164,7 +49159,16 @@
</dd>
- </dl></div><div class="impl">
+ </dl><h6 id="runtime-script-errors"><span class="secno">6.1.3.5.1 </span>Runtime script errors in documents</h6>
+
+ <p>Whenever an uncaught runtime script error occurs in one of the
+ scripts associated with a <code><a href="#document">Document</a></code>, the user agent must
+ <a href="#report-the-error">report the error</a> using the <code title="handler-window-onerror"><a href="#handler-window-onerror">onerror</a></code> <a href="#event-handlers" title="event
+ handlers">event handler</a> of the <a href="#script-s-global-object">script's global
+ object</a>. If the error is still <i title="concept-error-nothandled"><a href="#concept-error-nothandled">not handled</a></i> after this, then
+ the error may be reported to the user.</p>
+
+ </div><div class="impl">
<h4 id="event-loops"><span class="secno">6.1.4 </span>Event loops</h4>
Received on Thursday, 16 June 2011 04:55:47 UTC