[html5] r7715 - [e] (0) Rearrange for clarity. Fixing https://www.w3.org/Bugs/Public/show_bug.cg [...]

whatwg at whatwg.org whatwg at whatwg.org
Sat Feb 9 13:26:08 PST 2013


Author: ianh
Date: 2013-02-09 13:26:07 -0800 (Sat, 09 Feb 2013)
New Revision: 7715

Modified:
   complete.html
   index
   source
Log:
[e] (0) Rearrange for clarity.
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=17231
Affected topics: HTML

Modified: complete.html
===================================================================
--- complete.html	2013-02-09 21:23:29 UTC (rev 7714)
+++ complete.html	2013-02-09 21:26:07 UTC (rev 7715)
@@ -24187,6 +24187,20 @@
   <p>When a <code><a href=#document>Document</a></code> in an <code><a href=#the-iframe-element>iframe</a></code> is marked as <a href=#completely-loaded>completely
   loaded</a>, the user agent must synchronously run the <a href=#iframe-load-event-steps>iframe load event steps</a>.</p>
 
+  <p>When content whose <a href=#url>URL</a> has the <a href=#same-origin>same origin</a> as the <code><a href=#the-iframe-element>iframe</a></code>
+  element's <code><a href=#document>Document</a></code> fails to load (e.g. due to a DNS error, network error, or if the
+  server returned a 4xx or 5xx status code <a href=#concept-http-equivalent-codes title=concept-http-equivalent-codes>or
+  equivalent</a>), then the user agent must <a href=#queue-a-task>queue a task</a> to <a href=#fire-a-simple-event>fire a simple
+  event</a> named <code title=event-error>error</code> at the element instead. (This event does
+  not fire for <a href=#parse-error title="parse error">parse errors</a>, script errors, or any errors for
+  cross-origin resources.)</p>
+
+  <p>The <a href=#task-source>task source</a> for these <a href=#concept-task title=concept-task>tasks</a> is the <a href=#dom-manipulation-task-source>DOM
+  manipulation task source</a>.</p>
+
+  <p class=note>A <code title=event-load>load</code> event is also fired at the
+  <code><a href=#the-iframe-element>iframe</a></code> element when it is created if no other data is loaded in it.</p>
+
   <p>Each <code><a href=#document>Document</a></code> has an <dfn id=iframe-load-in-progress>iframe load in progress</dfn> flag and a <dfn id=mute-iframe-load>mute
   iframe load</dfn> flag. When a <code><a href=#document>Document</a></code> is created, these flags must be unset for
   that <code><a href=#document>Document</a></code>.</p>
@@ -24208,21 +24222,7 @@
    <li><p>Unset <var title="">child document</var>'s <a href=#iframe-load-in-progress>iframe load in progress</a>
    flag.</li>
 
-  </ol><p>When content whose <a href=#url>URL</a> has the <a href=#same-origin>same origin</a> as the <code><a href=#the-iframe-element>iframe</a></code>
-  element's <code><a href=#document>Document</a></code> fails to load (e.g. due to a DNS error, network error, or if the
-  server returned a 4xx or 5xx status code <a href=#concept-http-equivalent-codes title=concept-http-equivalent-codes>or
-  equivalent</a>), then the user agent must <a href=#queue-a-task>queue a task</a> to <a href=#fire-a-simple-event>fire a simple
-  event</a> named <code title=event-error>error</code> at the element instead. (This event does
-  not fire for <a href=#parse-error title="parse error">parse errors</a>, script errors, or any errors for
-  cross-origin resources.)</p>
-
-  <p>The <a href=#task-source>task source</a> for these <a href=#concept-task title=concept-task>tasks</a> is the <a href=#dom-manipulation-task-source>DOM
-  manipulation task source</a>.</p>
-
-  <p class=note>A <code title=event-load>load</code> event is also fired at the
-  <code><a href=#the-iframe-element>iframe</a></code> element when it is created if no other data is loaded in it.</p>
-
-  <p>When the <code><a href=#the-iframe-element>iframe</a></code>'s <a href=#browsing-context>browsing context</a>'s <a href=#active-document>active document</a> is
+  </ol><p>When the <code><a href=#the-iframe-element>iframe</a></code>'s <a href=#browsing-context>browsing context</a>'s <a href=#active-document>active document</a> is
   not <a href=#ready-for-post-load-tasks>ready for post-load tasks</a>, and when anything in the <code><a href=#the-iframe-element>iframe</a></code> is <a href=#delay-the-load-event title="delay the load event">delaying the load event</a> of the <code><a href=#the-iframe-element>iframe</a></code>'s
   <a href=#browsing-context>browsing context</a>'s <a href=#active-document>active document</a>, and when the <code><a href=#the-iframe-element>iframe</a></code>'s
   <a href=#browsing-context>browsing context</a> is in the <a href=#delaying-load-events-mode>delaying <code title=event-load>load</code> events

Modified: index
===================================================================
--- index	2013-02-09 21:23:29 UTC (rev 7714)
+++ index	2013-02-09 21:26:07 UTC (rev 7715)
@@ -24187,6 +24187,20 @@
   <p>When a <code><a href=#document>Document</a></code> in an <code><a href=#the-iframe-element>iframe</a></code> is marked as <a href=#completely-loaded>completely
   loaded</a>, the user agent must synchronously run the <a href=#iframe-load-event-steps>iframe load event steps</a>.</p>
 
+  <p>When content whose <a href=#url>URL</a> has the <a href=#same-origin>same origin</a> as the <code><a href=#the-iframe-element>iframe</a></code>
+  element's <code><a href=#document>Document</a></code> fails to load (e.g. due to a DNS error, network error, or if the
+  server returned a 4xx or 5xx status code <a href=#concept-http-equivalent-codes title=concept-http-equivalent-codes>or
+  equivalent</a>), then the user agent must <a href=#queue-a-task>queue a task</a> to <a href=#fire-a-simple-event>fire a simple
+  event</a> named <code title=event-error>error</code> at the element instead. (This event does
+  not fire for <a href=#parse-error title="parse error">parse errors</a>, script errors, or any errors for
+  cross-origin resources.)</p>
+
+  <p>The <a href=#task-source>task source</a> for these <a href=#concept-task title=concept-task>tasks</a> is the <a href=#dom-manipulation-task-source>DOM
+  manipulation task source</a>.</p>
+
+  <p class=note>A <code title=event-load>load</code> event is also fired at the
+  <code><a href=#the-iframe-element>iframe</a></code> element when it is created if no other data is loaded in it.</p>
+
   <p>Each <code><a href=#document>Document</a></code> has an <dfn id=iframe-load-in-progress>iframe load in progress</dfn> flag and a <dfn id=mute-iframe-load>mute
   iframe load</dfn> flag. When a <code><a href=#document>Document</a></code> is created, these flags must be unset for
   that <code><a href=#document>Document</a></code>.</p>
@@ -24208,21 +24222,7 @@
    <li><p>Unset <var title="">child document</var>'s <a href=#iframe-load-in-progress>iframe load in progress</a>
    flag.</li>
 
-  </ol><p>When content whose <a href=#url>URL</a> has the <a href=#same-origin>same origin</a> as the <code><a href=#the-iframe-element>iframe</a></code>
-  element's <code><a href=#document>Document</a></code> fails to load (e.g. due to a DNS error, network error, or if the
-  server returned a 4xx or 5xx status code <a href=#concept-http-equivalent-codes title=concept-http-equivalent-codes>or
-  equivalent</a>), then the user agent must <a href=#queue-a-task>queue a task</a> to <a href=#fire-a-simple-event>fire a simple
-  event</a> named <code title=event-error>error</code> at the element instead. (This event does
-  not fire for <a href=#parse-error title="parse error">parse errors</a>, script errors, or any errors for
-  cross-origin resources.)</p>
-
-  <p>The <a href=#task-source>task source</a> for these <a href=#concept-task title=concept-task>tasks</a> is the <a href=#dom-manipulation-task-source>DOM
-  manipulation task source</a>.</p>
-
-  <p class=note>A <code title=event-load>load</code> event is also fired at the
-  <code><a href=#the-iframe-element>iframe</a></code> element when it is created if no other data is loaded in it.</p>
-
-  <p>When the <code><a href=#the-iframe-element>iframe</a></code>'s <a href=#browsing-context>browsing context</a>'s <a href=#active-document>active document</a> is
+  </ol><p>When the <code><a href=#the-iframe-element>iframe</a></code>'s <a href=#browsing-context>browsing context</a>'s <a href=#active-document>active document</a> is
   not <a href=#ready-for-post-load-tasks>ready for post-load tasks</a>, and when anything in the <code><a href=#the-iframe-element>iframe</a></code> is <a href=#delay-the-load-event title="delay the load event">delaying the load event</a> of the <code><a href=#the-iframe-element>iframe</a></code>'s
   <a href=#browsing-context>browsing context</a>'s <a href=#active-document>active document</a>, and when the <code><a href=#the-iframe-element>iframe</a></code>'s
   <a href=#browsing-context>browsing context</a> is in the <a href=#delaying-load-events-mode>delaying <code title=event-load>load</code> events

Modified: source
===================================================================
--- source	2013-02-09 21:23:29 UTC (rev 7714)
+++ source	2013-02-09 21:26:07 UTC (rev 7715)
@@ -25646,6 +25646,20 @@
   <p>When a <code>Document</code> in an <code>iframe</code> is marked as <span>completely
   loaded</span>, the user agent must synchronously run the <span>iframe load event steps</span>.</p>
 
+  <p>When content whose <span>URL</span> has the <span>same origin</span> as the <code>iframe</code>
+  element's <code>Document</code> fails to load (e.g. due to a DNS error, network error, or if the
+  server returned a 4xx or 5xx status code <span title="concept-http-equivalent-codes">or
+  equivalent</span>), then the user agent must <span>queue a task</span> to <span>fire a simple
+  event</span> named <code title="event-error">error</code> at the element instead. (This event does
+  not fire for <span title="parse error">parse errors</span>, script errors, or any errors for
+  cross-origin resources.)</p>
+
+  <p>The <span>task source</span> for these <span title="concept-task">tasks</span> is the <span>DOM
+  manipulation task source</span>.</p>
+
+  <p class="note">A <code title="event-load">load</code> event is also fired at the
+  <code>iframe</code> element when it is created if no other data is loaded in it.</p>
+
   <p>Each <code>Document</code> has an <dfn>iframe load in progress</dfn> flag and a <dfn>mute
   iframe load</dfn> flag. When a <code>Document</code> is created, these flags must be unset for
   that <code>Document</code>.</p>
@@ -25671,20 +25685,6 @@
 
   </ol>
 
-  <p>When content whose <span>URL</span> has the <span>same origin</span> as the <code>iframe</code>
-  element's <code>Document</code> fails to load (e.g. due to a DNS error, network error, or if the
-  server returned a 4xx or 5xx status code <span title="concept-http-equivalent-codes">or
-  equivalent</span>), then the user agent must <span>queue a task</span> to <span>fire a simple
-  event</span> named <code title="event-error">error</code> at the element instead. (This event does
-  not fire for <span title="parse error">parse errors</span>, script errors, or any errors for
-  cross-origin resources.)</p>
-
-  <p>The <span>task source</span> for these <span title="concept-task">tasks</span> is the <span>DOM
-  manipulation task source</span>.</p>
-
-  <p class="note">A <code title="event-load">load</code> event is also fired at the
-  <code>iframe</code> element when it is created if no other data is loaded in it.</p>
-
   <p>When the <code>iframe</code>'s <span>browsing context</span>'s <span>active document</span> is
   not <span>ready for post-load tasks</span>, and when anything in the <code>iframe</code> is <span
   title="delay the load event">delaying the load event</span> of the <code>iframe</code>'s




More information about the Commit-Watchers mailing list