[html5] r8378 - [giow] (3) Make <embed> fire load events. (This is not complete. See bug 24214 f [...]

whatwg at whatwg.org whatwg at whatwg.org
Mon Jan 6 15:19:49 PST 2014


Author: ianh
Date: 2014-01-06 15:19:48 -0800 (Mon, 06 Jan 2014)
New Revision: 8378

Modified:
   complete.html
   index
   source
Log:
[giow] (3) Make <embed> fire load events. (This is not complete. See bug 24214 for more that needs doing here.)
Affected topics: HTML

Modified: complete.html
===================================================================
--- complete.html	2014-01-06 23:06:23 UTC (rev 8377)
+++ complete.html	2014-01-06 23:19:48 UTC (rev 8378)
@@ -23608,6 +23608,10 @@
 
        </li>
 
+       <li><p>Once the resource or plugin hass completely loaded, <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-load>load</code> at the
+       element.</li>
+
       </ol><p>Whether the resource is fetched successfully or not (e.g. whether the response code was a
       2xx code <a href=#concept-http-equivalent-codes title=concept-http-equivalent-codes>or equivalent</a>) must be ignored
       when determining the <a href=#concept-embed-type title=concept-embed-type>content's type</a> and when handing
@@ -23634,6 +23638,9 @@
       value of the <code title=attr-embed-type><a href=#attr-embed-type>type</a></code> attribute. The <code><a href=#the-embed-element>embed</a></code>
       element now represents this <a href=#plugin>plugin</a> instance.</p>
 
+      <p>Once the plugin is completely loaded, <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-load>load</code> at the element.</p>
+
      </dd>
 
     </dl></li>
@@ -23661,6 +23668,9 @@
   agents should convey the danger of overriding the sandbox to the user if an option to do so is
   provided.</p>
 
+  <p>The <a href=#task-source>task source</a> for the <a href=#concept-task title=concept-task>tasks</a> mentioned in this
+  section is the <a href=#dom-manipulation-task-source>DOM manipulation task source</a>.</p>
+
   </div>
 
   <p>Any namespace-less attribute other than <code title=attr-embed-name><a href=#attr-embed-name>name</a></code>, <code title=attr-embed-align><a href=#attr-embed-align>align</a></code>, <code title=attr-embed-hspace><a href=#attr-embed-hspace>hspace</a></code>, and <code title=attr-embed-vspace><a href=#attr-embed-vspace>vspace</a></code> <!-- when editing, see also note below --> may be

Modified: index
===================================================================
--- index	2014-01-06 23:06:23 UTC (rev 8377)
+++ index	2014-01-06 23:19:48 UTC (rev 8378)
@@ -23608,6 +23608,10 @@
 
        </li>
 
+       <li><p>Once the resource or plugin hass completely loaded, <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-load>load</code> at the
+       element.</li>
+
       </ol><p>Whether the resource is fetched successfully or not (e.g. whether the response code was a
       2xx code <a href=#concept-http-equivalent-codes title=concept-http-equivalent-codes>or equivalent</a>) must be ignored
       when determining the <a href=#concept-embed-type title=concept-embed-type>content's type</a> and when handing
@@ -23634,6 +23638,9 @@
       value of the <code title=attr-embed-type><a href=#attr-embed-type>type</a></code> attribute. The <code><a href=#the-embed-element>embed</a></code>
       element now represents this <a href=#plugin>plugin</a> instance.</p>
 
+      <p>Once the plugin is completely loaded, <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-load>load</code> at the element.</p>
+
      </dd>
 
     </dl></li>
@@ -23661,6 +23668,9 @@
   agents should convey the danger of overriding the sandbox to the user if an option to do so is
   provided.</p>
 
+  <p>The <a href=#task-source>task source</a> for the <a href=#concept-task title=concept-task>tasks</a> mentioned in this
+  section is the <a href=#dom-manipulation-task-source>DOM manipulation task source</a>.</p>
+
   </div>
 
   <p>Any namespace-less attribute other than <code title=attr-embed-name><a href=#attr-embed-name>name</a></code>, <code title=attr-embed-align><a href=#attr-embed-align>align</a></code>, <code title=attr-embed-hspace><a href=#attr-embed-hspace>hspace</a></code>, and <code title=attr-embed-vspace><a href=#attr-embed-vspace>vspace</a></code> <!-- when editing, see also note below --> may be

Modified: source
===================================================================
--- source	2014-01-06 23:06:23 UTC (rev 8377)
+++ source	2014-01-06 23:19:48 UTC (rev 8378)
@@ -24915,6 +24915,10 @@
 
        </li>
 
+       <li><p>Once the resource or plugin hass completely loaded, <span>queue a task</span> to
+       <span>fire a simple event</span> named <code data-x="event-load">load</code> at the
+       element.</p></li>
+
       </ol>
 
       <p>Whether the resource is fetched successfully or not (e.g. whether the response code was a
@@ -24943,6 +24947,9 @@
       value of the <code data-x="attr-embed-type">type</code> attribute. The <code>embed</code>
       element now represents this <span>plugin</span> instance.</p>
 
+      <p>Once the plugin is completely loaded, <span>queue a task</span> to <span>fire a simple
+      event</span> named <code data-x="event-load">load</code> at the element.</p>
+
      </dd>
 
     </dl>
@@ -24975,6 +24982,9 @@
   agents should convey the danger of overriding the sandbox to the user if an option to do so is
   provided.</p>
 
+  <p>The <span>task source</span> for the <span data-x="concept-task">tasks</span> mentioned in this
+  section is the <span>DOM manipulation task source</span>.</p>
+
   </div>
 
   <p>Any namespace-less attribute other than <code data-x="attr-embed-name">name</code>, <code




More information about the Commit-Watchers mailing list