haikuwebkit/LayoutTests/fast/dynamic/text-combine.html

20 lines
551 B
HTML

<meta charset="utf8">
<style>
html { -webkit-writing-mode: vertical-rl; }
div { font-family: 'hiragino mincho pro'; font-size: 24px; }
#combine { -webkit-text-combine: horizontal; }
</style>
<p>
These two lines should be identical:
</p>
<div>
希薄化後の1株当り利益が<span id="combine">3.67</span>ドルでした。
</div>
<div>
希薄化後の1株当り利益が<span>3.667</span>ドルでした。
</div>
<script>
document.body.offsetTop;
document.getElementById("combine").textContent = "3.667";
</script>