summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/html/object-image-nested-fallback.html
blob: 6728a84214e54981a06883548f4bd02a3eaecf3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
    <script>
        if (window.testRunner) {
            testRunner.dumpAsText();
            testRunner.waitUntilDone();
        }

        function finish()
        {
            if (window.testRunner)
                testRunner.notifyDone();
        }
    </script>
    <body> 
        <object type="image/png" data="this.object.does.not.exist.dtd">
            <object type="image/png" data="this.object.does.not.exist.dtd">
                <object type="image/png" data="this.object.does.not.exist.dtd" onerror="finish()">PASS when no crash occurs.</object>
            </object>
        </object>
    </body>
</html>