summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/tokenizer/nested-cached-scripts.html
blob: 91f5a3396a012a1f59a941eab7bf2fe25d152f73 (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
<html>
<head>
    <title></title>
    <script type="text/javascript">
        if (window.testRunner)
            testRunner.dumpAsText();
        var caching = true;
    </script>
    <!-- cache the scripts -->
    <script type="text/javascript" src="resources/nested-1.js"></script>
    <script type="text/javascript" src="resources/nested-2.js"></script>
    <script type="text/javascript">
        caching = false;
    </script>
</head>
<body>
    <p>
        This is a regression test for
        <i><a href="https://bugs.webkit.org/show_bug.cgi?id=9674">https://bugs.webkit.org/show_bug.cgi?id=9674</a>
        REGRESSION (r15075): Blank or incomplete pages on digg.com</i>.
    </p>
    <p>
        It should say &ldquo;PASS&rdquo; under the line.
    </p>
    <hr>
    <script type="text/javascript" src="resources/nested-1.js"></script>
    <script type="text/javascript" src="resources/nested-1.js"></script>
    PASS
</body>
</html>