- From: Yasuhiko Minamide <minamide@cs.tsukuba.ac.jp>
- Date: Sat, 03 Nov 2012 13:50:00 +0900 (JST)
- To: whatwg@whatwg.org
- Cc: minamide@cs.tsukuba.ac.jp
This is about Adaption Agency Algorithm in 12.2.5.4.7 The "in body" insertion mode. Limits of loops in the adoption agency algorithm were introduced in http://html5.org/tools/web-apps-tracker?from=5641&to=5642. However, the limit for the inner loop introduces an unexpected behaviour for the following fragment of an HTML document. <b><i><a><s><tt><div></b>abc</b></div></tt></s></a>xyz</i> This document is parsed into the following DOM tree. <b> <i> <a> <s> <tt></tt> </s> </a> "xyz" </i> </b> <a> <s> <tt> <div> <b></b> "abc" </div> </tt> </s> </a> "xyz" is inserted as a child of <i> and the order between "abc" and "xyz" is reversed in the tree. We would like to know whether this is an intended behaviour of the specification. We are aware that the similar reversal occurs in markup-in-tables. Yasuhiko Minamide
Received on Saturday, 3 November 2012 04:50:34 UTC