Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi
/css/css-view-transitions/list-style-position-style-change-crash.html
<!DOCTYPE html> <html class="test-wait"> <title>View transitions: list-style-position crash</title> <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/"> <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>