blob: e321b764ffc777f1beb77920c030d20991ef861d [file] [log] [blame]
<!DOCTYPE html>
<style>
html {
writing-mode:vertical-rl;
}
#h {
writing-mode: horizontal-tb;
}
</style>
<div id="h">Test passes if it does not crash.</div>
<script>
window.onload = function() {
var root = document.documentElement;
root.style.writingMode = "horizontal-tb";
if (window.testRunner)
testRunner.dumpAsText();
}
</script>