summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/fetch/fetchpriority/support/script-tests/async-script-initial-load.h2.html
blob: dbd26a8807f6a582d3f2ae8bc84ff4833c1edce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>fetchpriority</title>
  <script async src="../resources/dummy.js?1" fetchpriority="low"></script>
  <script async src="../resources/dummy.js?2" fetchpriority="high"></script>
  <script async src="../resources/dummy.js?3" fetchpriority="auto"></script>
  <script async src="../resources/dummy.js?4"></script>
</head>
<body>
  <svg><script async href="../resources/dummy.js?5" fetchpriority="low"></script></svg>
  <svg><script async href="../resources/dummy.js?6" fetchpriority="high"></script></svg>
  <svg><script async href="../resources/dummy.js?7" fetchpriority="auto"></script></svg>
  <svg><script async href="../resources/dummy.js?8"></script></svg>
<script>
  onload = function() {
    opener.postMessage("ChildLoaded", "*");
  }
</script>
</body>
</html>