Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / selection / text-selection-newline-span.html
blobf0b9296bf445bf07de57d4cc82b633bff0b67a3a
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: 5em;
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. Should wrap and
16 include space representing a newline only at end of the first line. -->
17 <div id="container">
18 x <span>y</span> z a
19 </div>
20 </body>