mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-24 05:13:07 +09:00
13 lines
389 B
HTML
13 lines
389 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
onload=function(){
|
|
var img = new Image();
|
|
img.src = "http://example.com/tests/dom/workers/test/serviceworkers/fetch/hsts/image-20px.png";
|
|
img.onload = function() {
|
|
window.parent.postMessage({status: "image", data: img.width}, "*");
|
|
};
|
|
img.onerror = function() {
|
|
window.parent.postMessage({status: "image", data: "error"}, "*");
|
|
};
|
|
};
|
|
</script>
|