Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / text-combine-first-line-crash.html
blobe8030a67bf9eb12d901f22ef0d4431f65c681ccc
1 <!DOCTYPE html>
2 <html>
3 <style>
4 #test {
5 -webkit-text-combine: horizontal;
6 -webkit-writing-mode: vertical-rl;
7 height: 0px;
9 #test::first-line {
10 color: black;
12 </style>
13 This test passes if it does not CRASH.
14 <span id="test">'''
15 </span>
16 <script>
17 document.documentElement.offsetTop;
18 test.innerText = '';
19 if (window.testRunner)
20 testRunner.dumpAsText();
21 </script>
22 </html>