1
0
Fork 0
firefox/testing/web-platform/tests/css/css-tables/table-cell-writing-mode-computed.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

24 lines
625 B
HTML

<!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>
<link rel="help" href="https://www.w3.org/TR/css-tables-3">
<link rel="help" href="https://crbug.com/1307976">
<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>