widget/cocoa/crashtests/373122-1-inner.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/widget/cocoa/crashtests/373122-1-inner.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,39 @@
     1.4 +<html>
     1.5 +<head>
     1.6 +
     1.7 +<script>
     1.8 +function boom()
     1.9 +{
    1.10 +  document.body.style.position = "fixed"
    1.11 +  
    1.12 +  setTimeout(boom2, 1);
    1.13 +}
    1.14 +
    1.15 +function boom2()
    1.16 +{
    1.17 +  lappy = document.getElementById("lappy");
    1.18 +  lappy.style.display = "none"
    1.19 +
    1.20 +  setTimeout(boom3, 200);
    1.21 +}
    1.22 +
    1.23 +function boom3()
    1.24 +{
    1.25 +  dump("Reloading\n");
    1.26 +  location.reload();
    1.27 +}
    1.28 +
    1.29 +</script>
    1.30 +
    1.31 +
    1.32 +</head>
    1.33 +
    1.34 +
    1.35 +<body bgcolor="black" onload="boom()">
    1.36 +
    1.37 +  <span style="overflow: scroll; display: -moz-box;"></span>
    1.38 +
    1.39 +  <embed id="lappy" src="" width=550 height=400 TYPE="application/x-shockwave-flash" ></embed>
    1.40 + 
    1.41 +</body>
    1.42 +</html>

mercurial