- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 18 Feb 2010 02:41:46 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv578
Modified Files:
Overview.html
Log Message:
Make blank <object>s with browsing contexts fire 'load' events when the browing context is created. (whatwg r4773)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3820
retrieving revision 1.3821
diff -u -d -r1.3820 -r1.3821
--- Overview.html 18 Feb 2010 02:27:21 -0000 1.3820
+++ Overview.html 18 Feb 2010 02:41:42 -0000 1.3821
@@ -18181,8 +18181,10 @@
<dd>
<p>The <code><a href="#the-object-element">object</a></code> element must be associated with a
- <a href="#nested-browsing-context">nested browsing context</a>, if it does not already
- have one. If the <a href="#url">URL</a> of the given resource is not
+ newly created <a href="#nested-browsing-context">nested browsing context</a>, if it does
+ not already have one.</p>
+
+ <p>If the <a href="#url">URL</a> of the given resource is not
<code><a href="#about:blank">about:blank</a></code>, the element's <a href="#nested-browsing-context">nested browsing
context</a> must then be <a href="#navigate" title="navigate">navigated</a> to that resource, with
<a href="#replacement-enabled">replacement enabled</a>, and with the
@@ -18193,6 +18195,12 @@
browsing context gets further navigated to other
locations.)</p>
+ <p>If the <a href="#url">URL</a> of the given resource <em>is</em>
+ <code><a href="#about:blank">about:blank</a></code>, then, instead, 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-load">load</code> at the
+ <code><a href="#the-object-element">object</a></code> element.</p>
+
<p>The <code><a href="#the-object-element">object</a></code> element <a href="#represents">represents</a> the
<a href="#nested-browsing-context">nested browsing context</a>.</p>
Received on Thursday, 18 February 2010 02:41:47 UTC