Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / international / combine-at-line-break-crash.html
bloba08c1b230796ca162cf8aad167a6e875c60e5646
1 <html>
2 <head>
3 <style>
4 body {
5 -webkit-writing-mode: vertical-lr;
7 #test {
8 -webkit-text-combine: horizontal;
9 height: 7px;
10 white-space: pre-wrap;
12 </style>
13 <script>
14 function runTest() {
15 if (window.testRunner)
16 testRunner.dumpAsText();
17 document.body.offsetTop;
18 var testContainer = document.getElementById('test');
19 testContainer.parentNode.removeChild(testContainer);
21 </script>
22 </head>
23 <body onload='runTest()'><p>Test passes if there's no crash.</p>
24 <!-- The empty scripts tags are needed to split the LayoutTextCombine and reproduce the bug. -->
25 <div id="test"><p>foo <script></script>
26 <script></script>
27 </p>
28 </div>
29 </body>