html5/spec Overview.html,1.2552,1.2553

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv18369

Modified Files:
	Overview.html 
Log Message:
Clarify that only uncaught errors are reported. (whatwg r3423)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2552
retrieving revision 1.2553
diff -u -d -r1.2552 -r1.2553
--- Overview.html	15 Jul 2009 22:38:56 -0000	1.2552
+++ Overview.html	16 Jul 2009 01:04:21 -0000	1.2553
@@ -175,7 +175,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 15 July 2009</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 16 July 2009</h2>
    <!--:ZZZ-->
    <dl><!-- ZZZ: update the month/day (twice), (un)comment out
     <dt>This Version:</dt>
@@ -268,7 +268,7 @@
   track.
   <!--ZZZ:-->
   <!--This specification is the 23 April 2009 Working Draft.-->
-  This specification is the 15 July 2009 Editor's Draft.
+  This specification is the 16 July 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)
@@ -42763,8 +42763,8 @@
   <p><i>This section only applies to user agents that support
   scripting in general and JavaScript in particular.</i></p>
 
-  <p>Whenever a runtime script error occurs in one of the scripts
-  associated with a <code>Document</code>, the user agent must
+  <p>Whenever an uncaught runtime script error occurs in one of the
+  scripts associated with a <code>Document</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-handler-attributes-0" title="event
   handler attributes">event handler attribute</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
@@ -42791,10 +42791,10 @@
     <p>If the function returns false, then the error is <i title="concept-error-handled"><a href="#concept-error-handled">handled</a></i>. Otherwise, the error is
     <i title="concept-error-nothandled"><a href="#concept-error-nothandled">not handled</a></i>.</p>
 
-    <p>Any exceptions thrown or errors caused by this function must be
-    reported to the user immediately after the error that the function
-    was called for, without using the <a href="#report-the-error" title="report the
-    error">report an error</a> algorithm again.</p>
+    <p>Any uncaught exceptions thrown or errors caused by this
+    function must be reported to the user immediately after the error
+    that the function was called for, without using the <a href="#report-the-error" title="report the error">report an error</a> algorithm
+    again.</p>
 
    </dd>
 

Received on Thursday, 16 July 2009 01:04:38 UTC