- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 19 Oct 2010 07:46:40 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv19006 Modified Files: spec.html tokenization.html Log Message: specify specific limits for AAA; let me know what pages break (whatwg r5642) [updated by splitter] Index: tokenization.html =================================================================== RCS file: /sources/public/html5/spec/tokenization.html,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- tokenization.html 18 Oct 2010 06:16:52 -0000 1.46 +++ tokenization.html 19 Oct 2010 07:46:38 -0000 1.47 @@ -3955,11 +3955,21 @@ <p>Run these steps:</p> - <ol><li> + <ol><li><p>Let <var title="">outer loop counter</var> be + zero.</p></li> - <p>Let the <var title="">formatting element</var> be the - last element in the <a href="parsing.html#list-of-active-formatting-elements">list of active formatting - elements</a> that:</p> + <li><p><i>Outer loop</i>: If <var title="">outer loop + counter</var> is greater than or equal to eight, then abort these + steps.</p></li> + + <li><p>Increment <var title="">outer loop counter</var> by + one.</p></li> + + <li> + + <p>Let the <var title="">formatting element</var> be the last + element in the <a href="parsing.html#list-of-active-formatting-elements">list of active formatting elements</a> + that:</p> <ul><li>is between the end of the list and the last scope marker in the list, if any, or the start of the list @@ -4018,7 +4028,17 @@ <p>Let <var title="">node</var> and <var title="">last node</var> be the <var title="">furthest block</var>. Follow these steps:</p> - <ol><li>Let <var title="">node</var> be the element immediately + <ol><li><p>Let <var title="">inner loop counter</var> be + zero.</p></li> + + <li><p><i>Inner loop</i>: If <var title="">inner loop + counter</var> is greater than or equal to three, then abort these + steps.</p></li> + + <li><p>Increment <var title="">inner loop counter</var> by + one.</p></li> + + <li>Let <var title="">node</var> be the element immediately above <var title="">node</var> in the <a href="parsing.html#stack-of-open-elements">stack of open elements</a>, or if <var title="">node</var> is no longer in the <a href="parsing.html#stack-of-open-elements">stack of open elements</a> (e.g. because it got @@ -4029,7 +4049,8 @@ <li>If <var title="">node</var> is not in the <a href="parsing.html#list-of-active-formatting-elements">list of active formatting elements</a>, then remove <var title="">node</var> from the <a href="parsing.html#stack-of-open-elements">stack of open - elements</a> and then go back to step 1.</li> + elements</a> and then go back to the step labeled <i>inner + loop</i>.</li> <li>Otherwise, if <var title="">node</var> is the <var title="">formatting element</var>, then go to the next step in the overall algorithm.</li> @@ -4052,7 +4073,7 @@ <li>Let <var title="">last node</var> be <var title="">node</var>.</li> - <li>Return to step 1 of this inner set of steps.</li> + <li>Return to the step labeled <i>inner loop</i>.</li> </ol></li> @@ -4094,7 +4115,7 @@ the position of the <var title="">furthest block</var> in that stack.</p></li> - <li><p>Jump back to step 1 in this series of steps.</p></li> + <li><p>Jump back to the step labeled <i>outer loop</i>.</p></li> </ol><p class="note">Because of the way this algorithm causes elements to change parents, it has been dubbed the "adoption agency Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.1310 retrieving revision 1.1311 diff -u -d -r1.1310 -r1.1311 --- spec.html 19 Oct 2010 06:46:43 -0000 1.1310 +++ spec.html 19 Oct 2010 07:46:38 -0000 1.1311 @@ -346,7 +346,7 @@ <a href="Overview.html">single page HTML</a>, <a href="spec.html">multipage HTML</a>, <a href="author/">web developer edition</a>. -This is revision 1.4518. +This is revision 1.4519. </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
Received on Tuesday, 19 October 2010 07:46:48 UTC