summaryrefslogtreecommitdiffstats
path: root/tests/auto/shared/data/loadprogress/main.html
blob: 3b7d2034b718693665a2007fe9ab0b65967688c0 (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>Load Progress Test Page</title>
	<style>
	    .monospace { font-family: "Lucida Console", Courier, monospace; }
	</style>
    <title>page1</title>
    <script>
        function addP(t) {
            var p = document.createElement('p')
            p.class = 'monospace'
            p.innerHTML = t
            var d = document.createElement('div')
            d.appendChild(p)
            document.body.appendChild(d)
        }
        window.addEventListener('DOMContentLoaded', (event) => { addP('DOMContentLoaded') })
    </script>
</head>
<body>
    <h1>Hello.</h1>
    <script>
        addP('sometext')
    </script>
    <p class="monospace">body in monospace</p>
    <iframe id="page1" src="page1.html"></iframe>
    <iframe id="page2" src="page2.html"></iframe>
    <iframe id="page3" src="page3.html"></iframe>
    <iframe id="page4" src="page4.html"></iframe>
</body>
</html>