Files
2026-05-26 23:36:42 -07:00

17 lines
562 B
JavaScript

// Header size is a fixed constant.
// https://w3c.github.io/resource-timing/#dom-performanceresourcetiming-transfersize
const headerSize = 300;
const cacheBustUrl = url => {
return url + '&unique=' + Math.random().toString().substring(2);
}
const checkSizeFields = (entry, bodySize, transferSize) => {
assert_equals(entry.decodedBodySize, bodySize,
'decodedBodySize');
assert_equals(entry.encodedBodySize, bodySize,
'encodedBodySize');
assert_equals(entry.transferSize, transferSize,
'transferSize');
}