summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/fetch/fetchpriority/support/image-tests/image-svg-initial-load.h2.html
blob: d8d46e37c8ef23fdc6cfbf141d4ad5228c21fd1c (plain)
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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>internal priority of SVG's &lt;image&gt; element</title>
  </head>
  <body>
    <svg width="25" height="25">
      <image href="../resources/square_25px_x_25px.png?1"
             width="25" height="25" fetchpriority="low"/>
    </svg>
    <svg width="25" height="25">
      <image href="../resources/square_25px_x_25px.png?2"
             width="25" height="25" fetchpriority="high"/>
    </svg>
    <svg width="25" height="25">
      <image href="../resources/square_25px_x_25px.png?3"
             width="25" height="25" fetchpriority="auto"/>
    </svg>
    <svg width="25" height="25">
      <image href="../resources/square_25px_x_25px.png?4"
             width="25" height="25"/>
    </svg>
    <script>
      onload = function() {
          opener.postMessage("ChildLoaded", "*");
      }
    </script>
  </body>
</html>