summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/http/tests/misc/resources/3rd-level-iframe-with-blocking-resource.php
blob: a9113aafd1472d4828e2d5903ac08c630c7eea22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
sleep(1);
print "
<html>
<head>
    <script src='notfound.js'></script>
    <style>body { background-color: red; }</style>
</head>
<body>
    PASS.
    <script>
        if (window.testRunner) {
            testRunner.notifyDone();
        }
    </script>
</body>
</html>";
?>