blob: a0008eea82455b370f65de5f58b285420c2ba30b [file] [log] [blame]
<!DOCTYPE html>
<body>
<script>
window.addEventListener('load', function() {
var img = document.createElement('IMG');
img.setAttribute("src", "/feature-policy/experimental-features/resources/image.jpg");
img.addEventListener('load', function() {
parent.postMessage({width: img.width, height: img.height}, '*');
});
document.body.appendChild(img);
});
</script>
</body>