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

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<html>

    <head>
        <title>Line breaks (using the style -webkit-line-break: after-white-space)</title>
    </head>
    <body>
        This is good:
        <div style="font-size: 20px; width:200px;">
            <p style="border:solid green 1px;">
                lorem ipsum dolor sit??amet
            </p>
        </div>
        The following should look like &ldquo;good&rdquo;:
        <div style="-webkit-line-break: after-white-space; font-size: 20px; width:200px;">
            <p style="border:solid green 1px;">
                lorem ipsum dolor sit??amet
            </p>
        </div>
    </body>
</html>