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