summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/input/rotatedButton.html
blob: 1bce66cf5e261edba99c631ddd214d61c5a37399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
  <head>
    <title>Rotated button test</title>
  </head>
  <body>
    <script src="mouse-helper.js"></script>
    <button onclick="clicked();">Click target</button>
    <style>
      button {
        transform: rotateY(180deg);
      }
    </style>
    <script>
      window.result = 'Was not clicked';
      function clicked() {
        result = 'Clicked';
      }
    </script>
  </body>
</html>