summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/fetch/fetchpriority/support/script-tests/script-initial-load-head.h2.html
blob: 5ca9d84db8b98dc62f27fcf8042bc3dd184b0496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>fetchpriority</title>
  <script src="../resources/dummy.js?1" fetchpriority="low"></script>
  <script src="../resources/dummy.js?2" fetchpriority="high"></script>
  <script src="../resources/dummy.js?3" fetchpriority="auto"></script>
  <script src="../resources/dummy.js?4"></script>
  <!-- We don't test in-head SVG <script> elements. The HTML parser ignores
       explicit SVG namespace on such elements and moves any <svg> wrapper
       into the body. -->
</head>
<body>
<script>
  onload = function() {
    opener.postMessage("ChildLoaded", "*");
  }
</script>
</body>
</html>