summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/1234622-1.html
blob: c715bc18d0de7bbb3761c01c7f101b368b7e1ab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>

<script>

window.addEventListener("load", function() {
    setTimeout(function() {
        window.location = "data:text/html,2";
    }, 0);
}, false);

window.addEventListener("pagehide", function() {
    var x = document.createElement("object");
    x.setAttribute("data", "data:text/plain,3");
    document.documentElement.appendChild(x);
}, false);

</script>