blob: e321b764ffc777f1beb77920c030d20991ef861d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!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>
|