Source code

Revision control

Copy as Markdown

Other Tools

<!doctype html>
<script>
onbeforeunload = function() {
opener.onChildBeforeUnload();
};
onload = function() {
setTimeout(function() {
opener.onChildLoadTimedOut();
}, 1000);
};
onunload = function() {
opener.onChildUnload();
};
</script>