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

14 lines
193 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
window.onmessage = event => {
document.body.textContent = `${event.origin}|${event.data}`;
};
</script>
</head>
<body></body>
</html>