Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-multicol/crashtests/body-becomes-spanner-html-becomes-vertical-rl.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<style>
html { columns:2; }
</style>
<div style="height:100px;"></div>
<script>
document.body.offsetTop;
document.body.style.columnSpan = "all";
document.documentElement.style.writingMode = "vertical-rl";
</script>