Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-writing-modes/crashtests/table-root-direction-propagation-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<style>
html {
display: table;
border-right: solid;
}
head { display: inline; }
body { direction: rtl; }
</style>
<body></body>
<script>
requestAnimationFrame(() => requestAnimationFrame(() => document.body.remove()));
</script>