Revision 8f9d8e97bc197888e5f396f971e1c5e7c83f11b3 authored by L. David Baron on 09 April 2018, 07:36:55 UTC, committed by Geoffrey Sneddon on 09 April 2018, 07:36:55 UTC
1 parent 85191e1
Raw File
resource-timing-tojson.html
<!doctype html>
<html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
  const img_url = "resources/blue.png";
  const img = document.createElement("img");
  img.src = img_url;
  window.onload = function() {
    test(() => {
      const entries = performance.getEntriesByType('resource');
      assert_greater_than_equal(entries.length, 1);
      const entry = entries[0];
      assert_equals(typeof(entry.toJSON), 'function');
      const json = entry.toJSON();
      assert_equals(typeof(json), 'object');

      const performanceResourceTimingKeys = [
        'name',
        'entryType',
        'startTime',
        'duration',
        'initiatorType',
        'nextHopProtocol',
        'workerStart',
        'redirectStart',
        'fetchStart',
        'domainLookupStart',
        'domainLookupEnd',
        'connectStart',
        'connectEnd',
        'secureConnectionStart',
        'requestStart',
        'responseStart',
        'responseEnd',
        'transferSize',
        'encodedBodySize',
        'decodedBodySize'
      ];
      for (const key of performanceResourceTimingKeys) {
        assert_equals(json[key], entry[key],
          `entry.toJSON().${key} should match entry.${key}`);
      }
    }, 'Test toJSON() in PerformanceResourceTiming');
  };
</script>
</body>
</html>
back to top