blob: 3fafb04845cd3f13ba3a2790b0792da3a331abed [file] [log] [blame]
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<style>
img {
width: 300px;
height: 225px;
}
body, html {
margin: 0;
}
</style>
<script>
function selectImageOverlay()
{
getSelection().selectAllChildren(internals.shadowRoot(document.querySelector("img")).querySelector("div#image-overlay"));
}
addEventListener("load", () => {
if (!window.internals)
return;
internals.installImageOverlay(document.querySelector("img"), [{
topLeft : new DOMPointReadOnly(0, 0),
topRight : new DOMPointReadOnly(1, 0),
bottomRight : new DOMPointReadOnly(1, 0.5),
bottomLeft : new DOMPointReadOnly(0, 0.5),
children: [
{
text : "foobar",
topLeft : new DOMPointReadOnly(0, 0),
topRight : new DOMPointReadOnly(1, 0),
bottomRight : new DOMPointReadOnly(1, 0.5),
bottomLeft : new DOMPointReadOnly(0, 0.5),
}
]
}]);
});
</script>
</head>
<body><img src='sunset-in-cupertino-600px.jpg'></img></body>
</html>