Automatic update from web-platform-tests Speculation Rules prerender tests should check for support We're seeing timeouts on the STP bots, because spending over an hour timing out on speculation rules tests just eats into the timeout. -- wpt-commits: 9f7999f4b3dd412a338f3231228e64230d6a6531 wpt-pr: 59217
38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<title>Same-origin prerendering can access blobs</title>
|
|
<meta name="variant" content="?target_hint=_self">
|
|
<meta name="variant" content="?target_hint=_blank">
|
|
<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/utils.js"></script>
|
|
<script src="resources/utils.js"></script>
|
|
|
|
<body>
|
|
<script>
|
|
setup(() => assertSpeculationRulesIsSupported('prerender'));
|
|
|
|
promise_test(async t => {
|
|
const rule_extras = {'target_hint': getTargetHint()};
|
|
const {exec} = await create_prerendered_page(
|
|
t, undefined, undefined, rule_extras);
|
|
const result = await exec(async () => {
|
|
const blob = await (await fetch('cache.txt')).blob();
|
|
const reader = new FileReader();
|
|
reader.readAsText(blob);
|
|
return new Promise(function(resolve, reject) {
|
|
reader.onload = () => resolve(reader.result);
|
|
reader.onerror = () => reject(reader.error);
|
|
});
|
|
});
|
|
const expected = "Hello, Prerender API!";
|
|
|
|
// Start prerendering a page that attempts to access the blob.
|
|
assert_equals(
|
|
result, expected,
|
|
'prerendering page should be able to read from blobs.');
|
|
}, 'prerendering page should be able to access blobs');
|
|
</script>
|