summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/serviceworkers/fetch/imagecache/postmortem.html
blob: 72a650d26cdba9c7b5cb1ed52bf8b0393ff7548e (plain)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<script>
onload = function() {
  var width = document.querySelector("img").width;
  window.parent.postMessage({status: "postmortem",
                             width: width}, "*");
};
</script>
<img src="image-20px.png">