blob: 254c3606ad49cab4654f88ae9ef14a83a2a9efb7 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
img {
position: absolute;
top: 0;
left: 0;
}
</style>
</head>
<body>
<img src="../../resources/green-400x400.png"></img>
<script>
addEventListener("load", () => {
let image = document.querySelector("img");
internals.installImageOverlay(image, [
{
topLeft : new DOMPointReadOnly(0, 0.5),
topRight : new DOMPointReadOnly(1, 0.5),
bottomRight : new DOMPointReadOnly(1, 1),
bottomLeft : new DOMPointReadOnly(0, 1),
children: [
{
text : "hello",
topLeft : new DOMPointReadOnly(0, 0.5),
topRight : new DOMPointReadOnly(1, 0.5),
bottomRight : new DOMPointReadOnly(1, 1),
bottomLeft : new DOMPointReadOnly(0, 1),
}
]
}
]);
eventSender.mouseMoveTo(50, 300);
eventSender.mouseDown();
eventSender.mouseMoveTo(350, 300);
eventSender.mouseUp();
});
</script>
</body>
</html>