summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/focus/support/cross-origin-ancestor-activeelement-after-child-lose-focus-helper.html
blob: fe96614517207faf2381b947d713fa9bbc01b886 (plain)
1
2
3
4
5
6
7
8
9
10
11
<html>
<body>
  <input />
  <script>
    window.onload = function() {
      document.querySelector("input").focus();
      window.parent.parent.postMessage("ready", '*');
    }
  </script>
</body>
</html>