1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/crashtests/369150-2.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,22 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 +<title>Bug 369150 - Crash [@ nsHTMLFramesetFrame::GetNoResize] with dynamic changes</title> 1.7 +<script> 1.8 + 1.9 +function boom() 1.10 +{ 1.11 + document.getElementById("frameset").appendChild(document.createElement("frame")); 1.12 + document.getElementById("frameset").setAttribute("rows", "100%, *"); 1.13 + document.documentElement.removeAttribute("class"); 1.14 +} 1.15 + 1.16 +</script> 1.17 + 1.18 +</head> 1.19 + 1.20 + <frameset id="frameset" cols="130, *" onload="setTimeout(boom, 30);"> 1.21 + <frame src="data:text/html,foo"> 1.22 + <frame src="data:text/html,bar"> 1.23 + </frameset> 1.24 + 1.25 +</html>