1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-22 00:08:54 +00:00
Files
UXP/dom/base/test/iframe_postMessages.html
T

11 lines
137 B
HTML

<!DOCTYPE HTML>
<html>
<body>
<script>
onmessage = function(e) {
parent.postMessage(e.data, '*', e.ports);
}
</script>
</body>
</html>