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
48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<title>Same-origin prerendering can trigger autoplay</title>
|
|
<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 {exec, activate} = await create_prerendered_page(t);
|
|
await exec(() => {
|
|
const video = document.createElement('video');
|
|
video.src = '/media/A4.webm';
|
|
video.autoplay = true;
|
|
video.muted = true;
|
|
window.video = video;
|
|
document.body.appendChild(video);
|
|
});
|
|
|
|
await new Promise(resolve => t.step_timeout(resolve, 500));
|
|
|
|
const before_activation = await exec(() => ({
|
|
readyState: video.readyState,
|
|
paused: video.paused,
|
|
currentTime: video.currentTime
|
|
}));
|
|
|
|
await activate();
|
|
await new Promise(resolve => t.step_timeout(resolve, 500));
|
|
const after_activation = await exec(() => ({
|
|
readyState: video.readyState,
|
|
paused: video.paused,
|
|
currentTime: video.currentTime
|
|
}));
|
|
|
|
assert_equals(before_activation.paused, true, "paused before activation (deferred)");
|
|
assert_equals(before_activation.currentTime, 0, "currentTime before activation");
|
|
assert_equals(after_activation.paused, false, "not paused after activation");
|
|
assert_greater_than(after_activation.currentTime, 0, "currentTime advances after activation");
|
|
}, "media autoplay should defer playback");
|
|
</script>
|