Skip to content

Instantly share code, notes, and snippets.

@ziesemer
Forked from kmaglione/stdin.xul
Created June 24, 2012 22:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ziesemer/2985342 to your computer and use it in GitHub Desktop.
Save ziesemer/2985342 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window id="foo" orient="vertical"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/javascript"><![CDATA[
onload = function onload(event) {
let iframe = document.getElementById("foo-iframe");
iframe.addEventListener("DOMContentLoaded", function (event) {
alert("You'll never see me - but no one knows why...");
if (this != event.originalTarget)
return;
// doStuffWith(this.contentWindow);
}, true);
iframe.setAttribute("src", "http://www.google.com/");
}
]]></script>
<iframe id="foo-iframe" type="content"/>
</window>
@ziesemer
Copy link
Author

This is all I see:

(No alert pop-up.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment