Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / line-breaks-after-white-space.html
blob3a4eefdc3613867629b94ab5117c769f6fa8a468
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3 <html>
5 <head>
6 <title>Line breaks (using the style -webkit-line-break: after-white-space)</title>
7 </head>
8 <body>
9 This is good:
10 <div style="font-size: 20px; width:200px;">
11 <p style="border:solid green 1px;">
12 lorem ipsum dolor sit??amet
13 </p>
14 </div>
15 The following should look like &ldquo;good&rdquo;:
16 <div style="-webkit-line-break: after-white-space; font-size: 20px; width:200px;">
17 <p style="border:solid green 1px;">
18 lorem ipsum dolor sit??amet
19 </p>
20 </div>
21 </body>
22 </html>