Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-writing-modes/text-combine-upright-sideways-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset=utf-8>
<title>Changing writing-mode of an element with text-combine-upright should not crash</title>
<link rel="author" title="Kent Tamura" href="mailto:tkent@chromium.orgm"/>
<body>
<div id="target" style="display: list-item; text-combine-upright: all; writing-mode: vertical-rl;"></div>
<script>
target.offsetTop;
target.style.writingMode = "sideways-rl";
target.offsetTop;
</script>
</body>