mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
Automatic update from web-platform-tests Align resource timing buffer full processing to spec PR 168 (take 3) This change implements the processing model from PR 168[1], when it comes to setResourceTimingBufferSize(), clearResourceTimings() and the firing of the resourcetimingbufferfull event. This is a reland of [2] which is a reland of [3] (but with nicer tests). [1] https://github.com/w3c/resource-timing/pull/168 [2] https://chromium-review.googlesource.com/c/chromium/src/+/1350950 [3] https://chromium-review.googlesource.com/c/chromium/src/+/1345269 Bug: 908181, 908414 Change-Id: I3a6c6e9d6a9aa5b5f907d1e86bec701ff2fa022d Reviewed-on: https://chromium-review.googlesource.com/c/1373819 Reviewed-by: Nicolás Peña Moreno <npm@chromium.org> Commit-Queue: Yoav Weiss <yoavweiss@chromium.org> Cr-Commit-Position: refs/heads/master@{#615929} -- wpt-commits: 79001b1d0d4a111b7f44608404d7b5504d755a1c wpt-pr: 14479
46 lines
1.7 KiB
HTML
46 lines
1.7 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="author" title="Intel" href="http://www.intel.com/" />
|
|
<link rel="help" href="http://www.w3.org/TR/resource-timing/#performanceresourcetiming"/>
|
|
<title>This test validates the functionality of onresourcetimingbufferfull in resource timing.</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="resources/buffer-full-utilities.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
const resource_timing_buffer_size = 2;
|
|
let bufferFullCount = 0;
|
|
let eventFired = false;
|
|
setup(() => {
|
|
clearBufferAndSetSize(resource_timing_buffer_size);
|
|
performance.addEventListener('resourcetimingbufferfull', e => {
|
|
assert_equals(e.bubbles, false, "Event bubbles attribute is false");
|
|
bufferFullCount++;
|
|
eventFired = true;
|
|
});
|
|
});
|
|
|
|
let overflowTheBuffer = () => {
|
|
return new Promise(resolve => {
|
|
// This resource overflows the entry buffer, and goes into the secondary buffer.
|
|
appendScript('resources/empty_script.js', resolve);
|
|
});
|
|
};
|
|
|
|
let testThatBufferContainsTheRightResources = () => {
|
|
assert_equals(performance.getEntriesByType('resource').length, resource_timing_buffer_size, 'There should only be |bufferSize| resource entries.');
|
|
assert_equals(bufferFullCount, 1, 'onresourcetimingbufferfull should have been invoked once.');
|
|
};
|
|
|
|
promise_test(async () => {
|
|
await fillUpTheBufferWithTwoResources('resources/empty.js');
|
|
await overflowTheBuffer();
|
|
await waitForEventToFire();
|
|
testThatBufferContainsTheRightResources();
|
|
}, "Test that a buffer full event does not bubble and that resourcetimingbufferfull is called only once per overflow");
|
|
</script>
|
|
</body>
|
|
</html>
|