parser/htmlparser/tests/crashtests/555462.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/parser/htmlparser/tests/crashtests/555462.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,21 @@
     1.4 +<!DOCTYPE HTML>
     1.5 +<html class="reftest-wait"><head>
     1.6 +    <meta charset="utf-8">
     1.7 +    <title>Testcase for bug 555462</title>
     1.8 +<script>
     1.9 +function f1() {
    1.10 +  window.frames[0].frameElement.removeAttribute("onload");
    1.11 +  window.frames[0].location.reload();
    1.12 +  setTimeout(f2,200); 
    1.13 +}
    1.14 +function f2() { window.frames[0].location.reload(); setTimeout(done,400); }
    1.15 +function done() { document.documentElement.removeAttribute("class"); }
    1.16 +</script>
    1.17 +</head>
    1.18 +<body>
    1.19 +
    1.20 +<iframe src="555462-iframe.html" onload="setTimeout(f1,100)"></iframe>
    1.21 +
    1.22 +
    1.23 +</body>
    1.24 +</html>

mercurial