File: rotatedButton.html

package info (click to toggle)
python-playwright 1.55.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,728 kB
  • sloc: python: 53,655; javascript: 383; sh: 216; makefile: 6
file content (21 lines) | stat: -rw-r--r-- 422 bytes parent folder | download | duplicates (31)
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>