summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/frames/iframe-plugin-load-remove-document-crash.html
blob: b5fa05a7daa81cca36be4d7747eb0114232daf74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<body onload="runTest()">
<script>
    if (window.testRunner)
    {
        testRunner.dumpAsText();
        testRunner.waitUntilDone();
    }
    
    function runTest()
    {
        document.body.innerHTML = 'PASS';
        
        if (testRunner)
            testRunner.notifyDone();
    }
</script>
<iframe src="data:application/x-blink-test-plugin,foo"></iframe>
</body>
</html>