chromium/third_party/blink/web_tests/fast/lists/rtl-ordered-list-expected.html

<!DOCTYPE html>
<html>
    <head>
        <title>RTL ordered list</title>
        <style>
            ol {
                width: 50px;
                margin: 0;
                padding: 0;
                list-style-position: inside;
            }
            li {
                list-style: none;
            }
        </style>
    </head>
    <body>
        <ol dir="rtl">
            <li>1.</li>
            <li>2.</li>
            <li>3.</li>
        </ol>
    </body>
</html>