Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/CSS2/linebox/crashtests/dir-change-simplifed-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<style>
body, div { position: absolute; }
body { direction: rtl; white-space: pre-line; }
</style>
<body>  
'123456789<div> </div>
<script>
// Force layout and await paint
document.body.offsetLeft;
requestAnimationFrame(() => requestAnimationFrame(() => {
document.querySelector("div").dir = "ltr";
}));
</script>
</body>