mirror of
https://github.com/servo/servo
synced 2026-05-03 04:42:17 +02:00
21 lines
505 B
HTML
21 lines
505 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<p>Reporting Frame...</p>
|
|
<script>
|
|
function onMessage(event) {
|
|
var p = document.createElement(p);
|
|
p.textContent = event.data;
|
|
document.body.appendChild(p);
|
|
window.parent.postMessage(event.data, "*");
|
|
}
|
|
|
|
window.addEventListener(
|
|
"message",
|
|
onMessage,
|
|
false
|
|
);
|
|
</script>
|
|
<iframe src='{{GET[subframe]}}' name="deepframe"></iframe>
|
|
</body>
|
|
</html> |