Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/table-cell-writing-mode-computed.html - WPT Dashboard Interop Dashboard
<!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>