https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d0e5b82af442510270fe9e265a8ada1e5dfafcf1 authored by Dave Tapuska on 12 September 2018, 17:49:57 UTC
Add experimental support for enterKeyHint.
Tip revision: d0e5b82
activation-api-click.tentative.html
<!DOCTYPE html>
<!--
   Tentative due to:
    https://github.com/whatwg/html/issues/1983
-->
<html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
</head>
<body>
  <h1>Clicking on document sets user activation</h1>
  <p>Click anywhere in the document.</p>
  <script>
    async_test(function(t) {
      assert_false(navigator.userActivation.hasBeenActive);
      assert_false(navigator.userActivation.isActive);
      window.addEventListener("click", t.step_func_done(event => {
        assert_true(navigator.userActivation.hasBeenActive);
        assert_true(navigator.userActivation.isActive);

        // Opening a window should consume the activation.
        var win = window.open('404.html');
        win.close();
        assert_true(navigator.userActivation.hasBeenActive);
        assert_false(navigator.userActivation.isActive);
      }));
      test_driver.click(document.body);
    }, "Values adjust on activity");
  </script>
</body>
</html>
back to top