gfx/tests/crashtests/394246-2.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gfx/tests/crashtests/394246-2.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,23 @@
     1.4 +<html class="reftest-wait">
     1.5 +<head>
     1.6 +<script>
     1.7 +function boom()
     1.8 +{
     1.9 +  var div = document.getElementById("div");
    1.10 +  div.innerHTML = div.innerHTML.slice(1);
    1.11 +  setTimeout(c, 30);
    1.12 +}
    1.13 +
    1.14 +function c()
    1.15 +{
    1.16 +  div.innerHTML = div.innerHTML.slice(1);
    1.17 +  document.documentElement.removeAttribute("class");
    1.18 +}
    1.19 +</script>
    1.20 +</head>
    1.21 +<body onload="boom();">
    1.22 +
    1.23 +<div id="div">t
    1.24 +&#769;</div>
    1.25 +
    1.26 +</body></html>
    1.27 \ No newline at end of file

mercurial