layout/base/crashtests/467881-1.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/base/crashtests/467881-1.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,47 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html class="reftest-wait">
     1.6 +<head>
     1.7 +<script>
     1.8 +
     1.9 +function boom()
    1.10 +{
    1.11 +  var HTML_NS = "http://www.w3.org/1999/xhtml";
    1.12 +  var outer, inner, q;
    1.13 +
    1.14 +  function a()
    1.15 +  {
    1.16 +    outer = document.createElementNS(HTML_NS, "div");
    1.17 +    inner = document.createElementNS(HTML_NS, "div");
    1.18 +
    1.19 +		inner.appendChild(document.createElementNS(HTML_NS, "iframe"));
    1.20 +		inner.appendChild(document.createElementNS(HTML_NS, "div"));
    1.21 +		inner.appendChild(q = document.createElementNS(HTML_NS, "span"));
    1.22 +
    1.23 +		outer.appendChild(inner);
    1.24 +		document.documentElement.appendChild(outer);
    1.25 +    setTimeout(b, 10);
    1.26 +  }
    1.27 +  
    1.28 +  function b()
    1.29 +  {
    1.30 +    outer.appendChild(document.createElementNS(HTML_NS, "span"));
    1.31 +    setTimeout(c, 10);
    1.32 +  }
    1.33 +  
    1.34 +  function c()
    1.35 +  {
    1.36 +    q.appendChild(document.createElementNS(HTML_NS, "div"));
    1.37 +    document.documentElement.removeAttribute("class");
    1.38 +  }
    1.39 +  
    1.40 +  a();
    1.41 +}
    1.42 +
    1.43 +window.addEventListener("load", boom, false);
    1.44 +
    1.45 +</script>
    1.46 +</head>
    1.47 +
    1.48 +<frameset></frameset>
    1.49 +
    1.50 +</html>

mercurial