blob: c155f547c78086363d650a499c0178192ee89ae2 [file] [log] [blame]
<script>
window.onload = function() {
var img = document.createElement('img');
img.src = 'http://example.test:8080/security/resources/compass.jpg';
img.srcset = 'http://example.test:8080/security/resources/compass.jpg 2x';
img.addEventListener('load', function () {
if (window.opener)
window.opener.postMessage('done', '*');
});
document.body.appendChild(img);
};
</script>