Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / text-combine.html
blob0910234a6d3faf1fb925556e5400e7c478c7bbdd
1 <meta charset="utf8">
2 <style>
3 html { -webkit-writing-mode: vertical-rl; }
4 div { font-family: 'hiragino mincho pro'; font-size: 24px; }
5 .combine { -webkit-text-combine: horizontal; }
6 </style>
7 <p>
8 These two lines should be identical:
9 </p>
10 <div>
11 希薄化後の1株当り利益が<span id="combine" class="combine">3.67</span>ドルでした。
12 </div>
13 <div>
14 希薄化後の1株当り利益が<span class="combine">3.667</span>ドルでした。
15 </div>
16 <script>
17 document.body.offsetTop;
18 document.getElementById("combine").textContent = "3.667";
19 </script>