gecko-dev/docshell/test/browser/onload_message.html
Andreas Farre 719ab63a7d Bug 1500869 - Test that BrowsingContexts work with BFCache. r=peterv
Differential Revision: https://phabricator.services.mozilla.com/D9367

--HG--
extra : moz-landing-system : lando
2018-10-30 09:58:47 +00:00

13 lines
280 B
HTML

<html>
<head>
<meta charset="utf-8">
<script>
addEventListener('load', function() {
opener.postMessage("load", "*");
});
</script>
</head>
<body>
This file posts a message containing "load" to opener on load completion.
</body>
</html>