blob: b7f5855812b468948d61d2ed3765a7e11d0c5d30 [file]
<html>
<body>
<div> div tag </div>
<script>
var img = document.createElement("img");
img.src="image.png";
document.getElementsByTagName('div')[0].appendChild(img);
function checkImage() {
sendValueToTest(document.images[0].complete);
}
function sendValueToTest(value) {
window.domAutomationController.send(value);
}
</script>
</body>
</html>