summaryrefslogtreecommitdiffstats
path: root/LayoutTests/http/tests/appcache/deferred-events-delete-while-raising.html
blob: 902d3a83eb2e95ebf2a399ddd2cae97ede097054 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html manifest="THIS_FILE_DOES_NOT_EXIST.manifest">
<head>
  <script src="THIS_FILE_DOES_NOT_EXIST.js" type="text/javascript"></script>
  <script type="text/javascript">
    var isParentFrame = window == window.top;

    if (isParentFrame) {
        if (window.layoutTestController) {
            layoutTestController.dumpAsText()
            layoutTestController.waitUntilDone();
        }

        window.onmessage = function() {
            document.getElementById('result').innerHTML = "SUCCESS";
            if (window.layoutTestController)
                layoutTestController.notifyDone();
        }
    } else {
        window.applicationCache.onchecking = function() {
            parent.postMessage("hello", "*");
            parent.killChildFrame();
        }
    }

    function killChildFrame() {
        document.body.removeChild(document.getElementsByTagName("iframe")[0]);
    }
  </script>
</head>
<body>
<p>Test the destruction of an iframe while deferred events are being raised does not crash the system.</p>
<div id="result">FAILURE</div>
<iframe src="deferred-events-delete-while-raising.html"></iframe>
</body>
</html>