https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7cb0d28a36927eb21b7984a80c6629969634a1e2 authored by moz-wptsync-bot on 13 March 2018, 19:13:50 UTC
Performance.measure(name) should not throw if name is one of the readonly attribute of the Performance interface,
Tip revision: 7cb0d28
performance-timeline.https.html
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/test-helpers.sub.js"></script>
<script>

service_worker_test(
    'resources/performance-timeline-worker.js',
    'Test Performance Timeline API in Service Worker');

// The purpose of this test is to verify that service worker overhead
// is included in the Performance API's timing information.
promise_test(t => {
  let script = 'resources/empty-but-slow-worker.js';
  let scope = 'resources/dummy.txt?slow-sw-timing';
  let url = new URL(scope, window.location).href;
  let slowURL = url + '&slow';
  let frame;
  return service_worker_unregister_and_register(t, script, scope)
    .then(reg => wait_for_state(t, reg.installing, 'activated'))
    .then(_ => with_iframe(scope))
    .then(f => {
      frame = f;
      return frame.contentWindow.fetch(url).then(r => r && r.text());
    })
    .then(_ => {
      return frame.contentWindow.fetch(slowURL).then(r => r && r.text());
    })
    .then(_ => {
      function elapsed(u) {
        let entry = frame.contentWindow.performance.getEntriesByName(u);
        return entry[0] ? entry[0].duration : undefined;
      }
      let urlTime = elapsed(url);
      let slowURLTime = elapsed(slowURL);
      // Verify the request slowed by the service worker is indeed measured
      // to be slower.  Note, we compare to smaller delay instead of the exact
      // delay amount to avoid making the test racy under automation.
      assert_greater_than(slowURLTime, urlTime + 1000,
                  'Slow service worker request should measure increased delay.');
      frame.remove();
      return service_worker_unregister_and_done(t, scope);
    })
}, 'empty service worker fetch event included in performance timings');

</script>
back to top