mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 13:45:36 +03:00
22 lines
422 B
HTML
22 lines
422 B
HTML
<!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>
|