-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaster.html
More file actions
66 lines (50 loc) · 1.65 KB
/
master.html
File metadata and controls
66 lines (50 loc) · 1.65 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>Test loading order</title>
<!-- <link rel="preload"
as="style"
media="screen"
href="http://localhost:3000/static?file=style1.css&delay=3000"
onload="
this.onload=null;this.rel='stylesheet'"> -->
<!-- <script>
console.log('inline 1')
</script> -->
<!-- onload="
this.onload=null;this.rel='stylesheet'" -->
<!-- <link rel="stylesheet"
href="http://localhost:3000/static?file=style1.css&delay=3000"> -->
<!-- <script src="http://localhost:3000/static?file=js1.js&delay=5000">
</script> -->
<script>
console.log('inline 1')
</script>
<link rel="stylesheet"
href="http://localhost:3000/static?file=style1.css&delay=1000">
<link rel="stylesheet"
href="http://localhost:3000/static?file=style1.css&delay=1000">
<!-- <script>
console.log('inline 2')
</script> -->
<!-- <script src="
http://localhost:3000/static?file=js2.js&delay=1000"
defer>
</script> -->
<!-- <link rel="stylesheet"
href="http://localhost:3000/static?file=style1.css&delay=3000"> -->
</head>
<body>
8
<img src="http://localhost:3000/static?file=car.jpg&delay=1000"
width="100">
<!-- <link rel="stylesheet"
href="http://localhost:3000/static?file=style1.css&delay=4000"> -->
<!-- <script src="
http://localhost:3000/static?file=js3.js&delay=2000"
defer></script> -->
</body>
</html>