blob: 5f60fac0aef192fe0733d92de36c652513289491 [file] [log] [blame]
<!DOCTYPE html>
<head>
<title>Example</title>
</head>
<body>
<!-- An image should be annotated. -->
<div>
<img src="red.png" width=16 height=16>
</div>
<!-- An image in an anonymous iframe should be annotated. -->
<iframe></iframe>
<script>
let iframe = document.querySelector('iframe');
iframe.contentDocument.body.innerHTML = `
<img src="green.png" width=16 height=16>
`;
</script>
</body>