Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<title>Computed value of orthogonal writing-mode on table cell</title>
<script src='/resources/testharness.js'></script>
<script src='/resources/testharnessreport.js'></script>
<style>
td {
writing-mode: vertical-lr;
}
</style>
<table>
<tr>
<td>Test</td>
</tr>
</table>
<script>
test(() => {
let td = document.querySelector('td');
assert_equals(getComputedStyle(td).writingMode, 'vertical-lr');
}, 'Computed value of orthogonal writing-mode on table cell');
</script>