https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ae999f1c2fe70a3195d00d214002242227b63b62 authored by Luke Bjerring on 16 May 2018, 02:06:44 UTC
Fix nits as per review
Tip revision: ae999f1
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