summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/manual/drawing-images-to-the-canvas/image-orientation/drawImage-from-element-swap-width-height-orientation-none.tentative.html
blob: 290d7acf3a7843688d7802f4f0511049b24fc08f (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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>createImageBitmap and drawImage from an element source with image orientation: none</title>
<link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-images-3/#propdef-image-orientation">
<link rel="match" href="drawImage-from-element-swap-width-height-orientation-none-ref.html">
  <script>
    window.onload = () => {
      const img = document.getElementById('img-element');

      const can = document.getElementById('bitmap-canvas');
      can.height = 50;
      can.width = 100;
      can.getContext('2d').drawImage(img, 0, 0);
    };
  </script>
</head>
<body>
  <img id="img-element" src="/css/css-images/image-orientation/support/exif-orientation-7-rl.jpg">
  <canvas id="bitmap-canvas" style="image-orientation: none;"></canvas>
</body>
</html>