Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<head>
  <title>user activated iframe</title>
</head>
<body>
<script>
onload = function() {
  parent.postMessage("loaded", "*");
};
onmessage = function(e) {
  if (e.data === "get") {
    parent.postMessage({
      isActivated: SpecialPowers.wrap(document).hasValidTransientUserGestureActivation,
      hasBeenActivated: SpecialPowers.wrap(document).hasBeenUserGestureActivated,
      lastActivationTimestamp: SpecialPowers.wrap(document).lastUserGestureTimeStamp,
    }, "*");
  }
};
</script>
</body>
</html>