Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html class="test-wait">
<title>View transitions: list-style-position crash</title>
<link rel="author" href="mailto:bokan@chromium.org">
<script>
onload = async () => {
let vt = document.startViewTransition();
await vt.ready;
await new Promise(resolve => requestAnimationFrame(resolve));
document.documentElement.style.listStylePosition = 'inside';
// Force style update.
window.scrollX;
document.documentElement.classList.remove('test-wait');
}
</script>
</html>