https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c4de0019f3aa95861f0c9f646e9cd0c0f1252594 authored by Anne van Kesteren on 23 March 2018, 17:49:38 UTC
Comment out SVGElement dependency from html.idl
Tip revision: c4de001
nav2_test_instance_accessible_from_the_start.html
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(function() {
  var navigationTiming2 = window.performance.getEntriesByType('navigation')[0];
  assert_true(navigationTiming2 !== undefined);
  assert_equals(navigationTiming2.entryType, "navigation");
  assert_equals(navigationTiming2.startTime, 0);
  assert_equals(navigationTiming2.initiatorType, "navigation");
  done();
}, "PerformanceNavigationTiming instance exists with reasonable values.");
</script>
back to top