Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 2 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /html/browsers/browsing-the-web/back-forward-cache/eligibility/inflight-fetch-1.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/utils.js"></script>
<script src="/common/dispatcher/dispatcher.js"></script>
<script src="../resources/helper.sub.js"></script>
<script src="../resources/inflight-fetch-helper.js"></script>
<script>
// Check whether the page is BFCached when there are in-flight network requests
// at the time of navigation.
// Successful fetch completion with header received before BFCached.
runTest(sameOriginUrl + '?delayBeforeBody=2000', false, true,
'Header received before BFCache and body received when in BFCache');
runTest(sameOriginUrl + '?delayBeforeBody=3500', false, true,
'Header received before BFCache and body received after BFCache');
</script>