chromium/third_party/blink/web_tests/fast/dynamic/text-combine.html

<!DOCTYPE html>
<html lang="ja">
<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" class="combine">3.67</span>ドルでした。
</div>
<div>
    希薄化後の1株当り利益が<span class="combine">3.667</span>ドルでした。
</div>
<script>
    document.body.offsetTop;
    document.getElementById("combine").textContent = "3.667";
</script>
</html>