blob: 5f24b91284a60084a03e51ad5952f0856cf87722 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
This test makes sure that text-orientation: sideways is treated the same as text-orientation: sideways-right.
<div id="placeholder"></div>
<div style="text-orientation: upright;">
<div id="t" style="-webkit-writing-mode: vertical-rl; text-orientation: mixed;">苹果公司abcd</div>
</div>
<script>
var t = document.getElementById("t");
var receiver = document.getElementById("placeholder");
receiver.textContent = window.getComputedStyle(t).getPropertyValue("-webkit-text-orientation");
</script>
</body>
</html>