summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/as-image/image-orientation-no-viewbox-and-size.html
blob: 9e1a8835b57d3bdc3cc18ac6716c393dd1d9521b (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
31
32
33
34
35
<!DOCTYPE>
<head>
  <style>
    body {
      border:  0px;
      margin:  0px;
      padding: 0px;
    }
  </style>
</head>
<body>
  <img src="image-orientation-no-viewbox-and-size.svg">

  <script>
    var orientationInfo = location.search.substring(1).split("&");
    var angle = orientationInfo[0];
    var flip = orientationInfo[1] == "flip" ? true : false;

    // Construct a style. "from-image" is special-cased.
    var style;
    if (angle == "from-image") {
      style = "img { image-orientation: from-image; }\n";
    } else {
      style = "img { image-orientation: "
            + angle + "deg"
            + (flip ? " flip" : "")
            + "; }\n";
    }

    // Apply the style to the document.
    var sheet = document.createElement('style');
    sheet.innerHTML = style;
    document.body.appendChild(sheet);
  </script>
</body>