blob: 72c208b24722c39928aa2db217e963f0d76a865e [file] [log] [blame]
<!doctype HTML>
<div id="container"></div>
<script>
var img = new Image();
img.src = '/resources/square100.png';
img.decode().then(function() {
document.getElementById("container").appendChild(img);
window.parent.postMessage("pass", "*");
}, function() {
window.parent.postMessage("fail", "*");
});
</script>