summaryrefslogtreecommitdiffstats
path: root/toolkit/components/pictureinpicture/tests/test-reversed.html
blob: 4f6d51669843ef755d44a750ec351b875b113cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Picture-in-Picture tests</title>
  <script type="text/javascript" src="click-event-helper.js"></script>
</head>
<style>
  #reversed {
      transform: scaleX(-1);
  }
</style>
<body>
    <h1>Reversed video</h1>
    <video id="reversed" src="test-video.mp4" controls loop="true" width="400" height="225"></video>
    <h1>Not Reversed Video</h1>
    <video id="not-reversed" src="test-video.mp4" loop="true" width="400" height="225"></video>
</body>
</html>