https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4f05c011be2ef38886088a09748b90dd2476d40f authored by Mugdha Lakhani on 18 October 2018, 15:50:21 UTC
[Background Fetch] Support access to active fetches.
Tip revision: 4f05c01
navigation_timing_idl.html
<!DOCTYPE html>
<head>
    <meta charset='utf-8' />
    <script src="/resources/testharness.js"></script>
    <script src='/resources/testharnessreport.js'></script>
    <script>
      setup({explicit_done: true})
      window.addEventListener('load', function(){
        assert_not_equals(typeof performance.getEntriesByType('navigation')[0].serverTiming, 'undefined',
          'An instance of `PerformanceNavigationTiming` should have a `serverTiming` attribute.')
        done()
      })
    </script>
</head>
back to top