layout/generic/crashtests/369150-2.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 <html class="reftest-wait">
     2 <head>
     3 <title>Bug 369150 - Crash [@ nsHTMLFramesetFrame::GetNoResize] with dynamic changes</title>
     4 <script>
     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 }
    13 </script>
    15 </head>
    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>
    22 </html>

mercurial