1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/324318-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +<script> 1.5 + 1.6 +var tr; 1.7 + 1.8 +function init() { 1.9 + 1.10 + tr = one.document.getElementsByTagName("tr")[0]; 1.11 + tr = document.adoptNode(tr); 1.12 + document.getElementsByTagName("html")[0].appendChild(tr); 1.13 + 1.14 + setTimeout( 1.15 + function(){ 1.16 + var frameset = document.getElementsByTagName("frameset")[0]; 1.17 + document.getElementsByTagName("td")[0].appendChild(frameset); 1.18 + document.documentElement.removeAttribute("class"); 1.19 + }, 1.20 + 100); 1.21 + 1.22 +} 1.23 + 1.24 +window.addEventListener("load", init, false); 1.25 +document.documentElement.setAttribute("class", "reftest-wait"); 1.26 + 1.27 +</script> 1.28 + 1.29 +<frameset resizable="yes" rows="50%,*"> 1.30 + <frame name="one" src="data:text/html,<table border='1'><tr><td>tdc</td></tr></table>"> 1.31 + <frame name="two" src="data:text/html,"> 1.32 +</frameset>