mirror of
https://github.com/servo/servo.git
synced 2025-07-13 02:13:40 +01:00
15 lines
723 B
HTML
15 lines
723 B
HTML
<!DOCTYPE html>
|
|
<body style="background: lightgrey;">
|
|
<script>
|
|
window.parent.postMessage(JSON.stringify({"type": "child-four-loaded", "isActive": navigator.userActivation.isActive,
|
|
"hasBeenActive": navigator.userActivation.hasBeenActive}), "*");
|
|
|
|
window.addEventListener("message", event => {
|
|
if (event.source === window.parent && event.data == "transfer_user_activation") {
|
|
window.parent.postMessage(JSON.stringify({"type": "child-four-report", "isActive": navigator.userActivation.isActive,
|
|
"hasBeenActive": navigator.userActivation.hasBeenActive}), "*");
|
|
}
|
|
});
|
|
|
|
</script>
|
|
</body>
|