Files
tubestation/testing/web-platform/tests/user-timing/user-timing-tojson.html
Nicolas Pena 2db832f708 Bug 1462502 [wpt PR 11056] - Add UserTiming toJSON test, a=testonly
Automatic update from web-platform-testsAdd UserTiming toJSON test

This CL tests toJSON for PerformanceMark and PerformanceMeasure.

Change-Id: I53cd44f3a7e5b2c00d4e510d0f845979b8b57fc9
Reviewed-on: https://chromium-review.googlesource.com/1064827
Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Reviewed-by: Timothy Dresser <tdresser@chromium.org>
Cr-Commit-Position: refs/heads/master@{#560003}

--

wpt-commits: c4f958c41be934af7389aa8363e0d7272c536ebc
wpt-pr: 11056
2018-05-22 09:40:41 +00:00

45 lines
1.4 KiB
HTML

<!doctype html>
<html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
const keys = [
'name',
'entryType',
'startTime',
'duration',
];
test(() => {
performance.mark('a');
const markEntries = performance.getEntriesByType('mark');
assert_equals(1, markEntries.length);
const markEntry = markEntries[0];
assert_equals(markEntry.entryType, 'mark');
assert_equals(typeof(markEntry.toJSON), 'function');
const markJSON = markEntry.toJSON();
assert_equals(typeof(markJSON), 'object');
for (const key of keys) {
assert_equals(markJSON[key], markEntry[key], `PerformanceMark ${key} entry does not match its toJSON value`);
}
}, 'Test toJSON() in PerformanceMark');
test(() => {
performance.measure('m');
const measureEntries = performance.getEntriesByType('measure');
assert_equals(1, measureEntries.length);
const measureEntry = measureEntries[0];
assert_equals(measureEntry.entryType, 'measure');
assert_equals(typeof(measureEntry.toJSON), 'function');
const measureJSON = measureEntry.toJSON();
assert_equals(typeof(measureJSON), 'object');
for (const key of keys) {
assert_equals(measureJSON[key], measureEntry[key], `PerformanceMeasure ${key} entry does not match its toJSON value`);
}
}, 'Test toJSON() in PerformanceMeasure');
</script>
</body>
</html>