https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 42a98283681188744c47f2bba33ad818a5b8d585 authored by Stephen Chenney on 20 December 2018, 17:40:54 UTC
Fix table cell background painting under zoom and min-width
Tip revision: 42a9828
navigation_timing_idl.https.html
<!DOCTYPE html>
<head>
    <meta charset='utf-8' />
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="/common/performance-timeline-utils.js"></script>
    <script>
      setup({explicit_done: true})
      delayedLoadListener(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