chromium/third_party/blink/web_tests/fast/css/first-letter-punctuation.html

<!DOCTYPE html>
<html>
    <head>
        <style type="text/css">
            div:first-letter
            {
                color: green;
                font-size: 36px;
            }
        </style>
    </head>
    <body>
        <p>Test passes if all the T are green, as well as punctuation elements when they are adjacent to a letter (without spaces)</p>

        <div>Test</div>
        <div>&nbsp;Test&nbsp;</div>

        <div>(T)est</div>
        <div>&nbsp;(T)est</div>
        <div>&ldquo;T&rdquo;est</div>

        <div>&amp;Test</div>
        <div>&nbsp;&amp;Test</div>
        <div>&#x10100;T&#x10100;est</div>
        <div>&#x104e;&#x300;T&#x300;&#x104e;&#x300;est</div>
        <div>T&amp;S</div>
        <div>T&nbsp;&amp;&nbsp;S</div>
        <div>T &amp; S</div>

        <div>&laquo;&nbsp;S&nbsp;&raquo;</div>
        <div>&laquo;&nbsp;S&nbsp;&raquo;&nbsp;&nbsp;&nbsp;&nbsp;</div>

        <div>&bull; </div>
        <div>&nbsp;&bull; &nbsp;</div>
    </body>
</html>