blob: 86336686b32902ec1c123b0f55ff67e9aba43062 [file] [log] [blame]
// 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');
}