- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 30 Jul 2010 01:46:50 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv4497 Modified Files: sections.html spec.html the-iframe-element.html Log Message: Various minor fixes and an elaboration of an example. (whatwg r5226) [updated by splitter] Index: the-iframe-element.html =================================================================== RCS file: /sources/public/html5/spec/the-iframe-element.html,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- the-iframe-element.html 30 Jul 2010 00:19:29 -0000 1.9 +++ the-iframe-element.html 30 Jul 2010 01:46:48 -0000 1.10 @@ -497,19 +497,18 @@ original parent <code><a href="infrastructure.html#document">Document</a></code> if its <code><a href="#the-iframe-element">iframe</a></code> is moved to another <code><a href="infrastructure.html#document">Document</a></code>.</p> - <p>On the other hand, if an <code><a href="#the-iframe-element">iframe</a></code> is <span class="note"><a href="infrastructure.html#remove-an-element-from-a-document" title="remove an element from a - document">removed</a> from a <code><a href="infrastructure.html#document">Document</a></code> and is then - subsequently garbage collected, this will likely mean (in the - absence of other references) that the <a href="browsers.html#child-browsing-context">child browsing - context</a>'s <code><a href="browsers.html#windowproxy">WindowProxy</a></code> object will become - eligble for garbage collection, which will then lead to that - <a href="browsers.html#browsing-context">browsing context</a> being <a href="browsers.html#a-browsing-context-is-discarded" title="a browsing context - is discarded">discarded</a>, which will then lead to its - <code><a href="infrastructure.html#document">Document</a></code> being <a href="browsers.html#discard-a-document" title="discard a + <p>On the other hand, if an <code><a href="#the-iframe-element">iframe</a></code> is <a href="infrastructure.html#remove-an-element-from-a-document" title="remove an element from a document">removed</a> from a + <code><a href="infrastructure.html#document">Document</a></code> and is then subsequently garbage collected, + this will likely mean (in the absence of other references) that the + <a href="browsers.html#child-browsing-context">child browsing context</a>'s <code><a href="browsers.html#windowproxy">WindowProxy</a></code> + object will become eligble for garbage collection, which will then + lead to that <a href="browsers.html#browsing-context">browsing context</a> being <a href="browsers.html#a-browsing-context-is-discarded" title="a + browsing context is discarded">discarded</a>, which will then + lead to its <code><a href="infrastructure.html#document">Document</a></code> being <a href="browsers.html#discard-a-document" title="discard a document">discarded</a> also. This happens without notice to any scripts running in that <code><a href="infrastructure.html#document">Document</a></code>; for example, no <code title="event-unload">unload</code> events are fired (the - "<a href="history.html#unload-a-document">unload a document</a>" steps are not run).</span></p> + "<a href="history.html#unload-a-document">unload a document</a>" steps are not run).</p> </div> Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.1095 retrieving revision 1.1096 diff -u -d -r1.1095 -r1.1096 --- spec.html 30 Jul 2010 00:19:29 -0000 1.1095 +++ spec.html 30 Jul 2010 01:46:48 -0000 1.1096 @@ -333,7 +333,7 @@ <a href="Overview.html">single page HTML</a>, <a href="spec.html">multipage HTML</a>, <a href="author/">author edition</a>. -This is revision 1.4160. +This is revision 1.4161. </p> <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2010 <a href="http://www.w3.org/"><abbr title="World Wide Index: sections.html =================================================================== RCS file: /sources/public/html5/spec/sections.html,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- sections.html 29 Jul 2010 00:36:49 -0000 1.7 +++ sections.html 30 Jul 2010 01:46:46 -0000 1.8 @@ -1343,6 +1343,27 @@ <p>Both of the documents above are semantically identical and would produce the same outline in compliant user agents.</p> + <p>This third example is also semantically identical, and might be + easier to maintain (e.g. if sections are often moved around in + editing):</p> + + <pre><body> + <h1>Apples</h1> + <p>Apples are fruit.</p> + <section> + <h1>Taste</h1> + <p>They taste lovely.</p> + <section> + <h1>Sweet</h1> + <p>Red apples are sweeter than green ones.</p> + </section> + </section> + <section> + <h1>Color</h1> + <p>Apples come in various colors.</p> + </section> +</body></pre> + </div><h5 id="outlines"><span class="secno">4.4.11.1 </span>Creating an outline</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><div class="impl"> <!-- v2 idea: It would be nice if there was a way to use this to
Received on Friday, 30 July 2010 01:46:51 UTC