https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ada7314f022918b1c32e56f647e27a94c5091f94 authored by Nicolas Pena on 06 April 2018, 14:54:34 UTC
Fix the |name| of PerformanceNavigationTiming
Tip revision: ada7314
share-securecontext.http.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>WebShare Test: Share from non-secure context</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <script>
        test(() => {
          assert_false('share' in navigator, 'navigator has attribute \'share\'.');
        }, 'navigator.share must be undefined in non-secure context');
    </script>
  </body>
</html>
back to top