Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 6 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /fetch/fetch-later/quota/same-origin-iframe/oversized-payload.tentative.https.window.html - WPT Dashboard Interop Dashboard
// META: script=/common/get-host-info.sub.js
// META: script=/common/utils.js
// META: script=/fetch/fetch-later/resources/fetch-later-helper.js
// META: script=/fetch/fetch-later/quota/resources/helper.js
'use strict';
const {HTTPS_ORIGIN} = get_host_info();
const OVERSIZED_REQUEST_BODY_SIZE = QUOTA_PER_ORIGIN + 1;
for (const dataType in BeaconDataType) {
// In a same-origin iframe, test making a POST request with oversized
// payload, which should be rejected by fetchLater API.
parallelPromiseTest(
async _ => await loadFetchLaterIframe(HTTPS_ORIGIN, {
activateAfter: 0,
method: 'POST',
bodyType: dataType,
bodySize: OVERSIZED_REQUEST_BODY_SIZE,
expect: new FetchLaterIframeExpectation(
FetchLaterExpectationType.ERROR_DOM, 'QuotaExceededError'),
}),
`fetchLater() does not accept payload[size=${
OVERSIZED_REQUEST_BODY_SIZE}] exceeding per-origin quota in a POST request body of ${
dataType} in same-origin iframe.`);
}