editor/composer/src/crashtests/428844-1.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/editor/composer/src/crashtests/428844-1.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,17 @@
     1.4 +<html class="reftest-wait">
     1.5 +<head>
     1.6 +<script>
     1.7 +function boom() {
     1.8 +  var iframe = document.getElementById('inner');
     1.9 +  iframe.addEventListener("load", function() {
    1.10 +    document.documentElement.removeAttribute("class");
    1.11 +  }, false);
    1.12 +  iframe.src = "data:text/html,";
    1.13 +  dump("Outer onload\n");
    1.14 +}
    1.15 +</script>
    1.16 +</head>
    1.17 +<body onload="boom()">
    1.18 +<iframe src="428844-1-inner.xhtml" id="inner"></iframe>
    1.19 +</body>
    1.20 +</html>

mercurial