summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/fetch/fetchpriority/support/link-tests/link-initial-prefetch.h2.html
blob: 746997aca24e0db15fd06390d22d2815a2937452 (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>
  <link rel="prefetch" href="../resources/dummy.txt?1" fetchpriority="low">
  <link rel="prefetch" href="../resources/dummy.txt?2" fetchpriority="high">
  <link rel="prefetch" href="../resources/dummy.txt?3" fetchpriority="auto">
  <link rel="prefetch" href="../resources/dummy.txt?4">
</head>
<body>
<script>
  onload = function() {
    opener.postMessage("ChildLoaded", "*");
  }
</script>
</body>
</html>