summaryrefslogtreecommitdiffstats
path: root/layout/style/test/bug1382568-iframe.html
blob: b1448703e5902ef71be80dabcee001364079e125 (plain)
1
2
3
4
5
6
7
8
<!doctype html>
<iframe src="http://example.com/doesnt-matter-because-it-gets-blocked-due-to-mixed-content"></iframe>
<script>
window.addEventListener('load', function(){
  window[0].document.body.innerText;
  window.parent.postMessage({ result: "ok" }, "*");
});
</script>