mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
6b7df33f3a
Differential Revision: https://phabricator.services.mozilla.com/D18958 --HG-- extra : moz-landing-system : lando
19 lines
342 B
HTML
19 lines
342 B
HTML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
|
|
</head>
|
|
<body>
|
|
<iframe></iframe>
|
|
<script>
|
|
window.onmessage = e => {
|
|
opener.postMessage(e.data, "*");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|