Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / line-breaks.html
blob5e2cacc174fc3ec4a591d8064a15b1f8789035a0
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3 <html>
5 <head>
6 <title>Line breaks</title>
7 </head>
8 <body>
9 This is good:
10 <div style="font-family:'Lucida Grande'; font-size:16pt; text-decoration:underline; width:100px; text-align:right;">
11 <p style="border:solid green 1px;">
12 Lorem ipsum
13 </p>
14 </div>
15 The following three should look like &ldquo;good&rdquo;:
16 <div style="font-family:'Lucida Grande'; font-size:16pt; text-decoration:underline; width:100px; text-align:right;">
17 <p style="border:solid blue 1px;">
18 Lorem &#x0131;psum
19 </p>
20 <p style="border:solid blue 1px;">
21 Lorem &#x0131;psum
22 </p>
23 <p style="border:solid blue 1px;">
24 Lore&#x1e3f; ipsum
25 </p>
26 </div>
27 This is bad:
28 <div style="font-family:'Lucida Grande'; font-size:16pt; text-decoration:underline; width:100px; text-align:right;">
29 <p style="border:solid red 1px;">
30 Lorem&nbsp; ipsum
31 </p>
32 </div>
33 </body>
34 </html>