1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/tables/crashtests/323604-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,10 @@ 1.4 +<script> 1.5 1.6 function init() { 1.7 + document.getElementById("three").appendChild(document.getElementById("two")) 1.8 + 1.9 + setTimeout(function(){ 1.10 + document.getElementById("two").appendChild(document.getElementById("one")) 1.11 + }, 200); 1.12 +} 1.13 1.14 window.addEventListener("load", init, 0); 1.15 1.16 </script> 1.17 + 1.18 +<table style="border-collapse: collapse;" border="1"><tr><td id="one">1</td><td id="two">2</td></tr><tr><td id="three">3</td><td>4</td></tr></table> 1.19 +