chromium/third_party/blink/web_tests/virtual/text-antialias/line-breaks.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd">
<html>

    <head>
        <title>Line breaks</title>
    </head>
    <body>
        This is good:
        <div style="font-family:'Lucida Grande'; font-size:16pt; text-decoration:underline; width:100px; text-align:right;">
            <p style="border:solid green 1px;">
            Lorem ipsum
            </p>
        </div>
        The following three should look like &ldquo;good&rdquo;:
        <div style="font-family:'Lucida Grande'; font-size:16pt; text-decoration:underline; width:100px; text-align:right;">
            <p style="border:solid blue 1px;">
            Lorem &#x0131;psum
            </p>
            <p style="border:solid blue 1px;">
            Lorem  &#x0131;psum
            </p>
            <p style="border:solid blue 1px;">
            Lore&#x1e3f; ipsum
            </p>
        </div>
        This is bad:
        <div style="font-family:'Lucida Grande'; font-size:16pt; text-decoration:underline; width:100px; text-align:right;">
            <p style="border:solid red 1px;">
            Lorem&nbsp; ipsum
            </p>
        </div>
    </body>
</html>