Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / selection / text-selection-newline-span-across-line.html
blob977722637647d74e50bf39b8e48b384b82815cb0
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../resources/ahem.js"></script>
5 <script src="../../resources/run-after-layout-and-paint.js"></script>
6 <script src="resources/selection.js"></script>
7 <style>
8 div {
9 font-family: Ahem;
10 width: 4em;
12 </style>
13 </head>
14 <body onload="selectRangeAfterLayoutAndPaint(container, 0, container, 3);">
15 <!-- Two lines in one block with a span on the first line spanning lines.
16 Should wrap and include space representing a newline after the first
17 line. -->
18 <div id="container">
19 x <span>y z</span> a
20 </div>
21 </body>