tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

369150-2.html (553B)


      1 <html class="reftest-wait">
      2 <head>
      3 <title>Bug 369150 - Crash [@ nsHTMLFramesetFrame::GetNoResize] with dynamic changes</title>
      4 <script>
      5 
      6 function boom()
      7 {
      8  document.getElementById("frameset").appendChild(document.createElement("frame"));
      9  document.getElementById("frameset").setAttribute("rows", "100%, *"); 
     10  document.documentElement.removeAttribute("class");
     11 }
     12 
     13 </script>
     14 
     15 </head>
     16 
     17 <frameset id="frameset" cols="130, *" onload="setTimeout(boom, 30);">
     18   <frame src="data:text/html,foo">
     19   <frame src="data:text/html,bar">
     20 </frameset>
     21 
     22 </html>