Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/CSS2/bidi-text/direction-001.xht - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <head>
        <title>CSS Test: Direction set to 'ltr'</title>
        <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-03-14 -->
        <link rel="match" href="direction-001-ref.xht" />
        <meta name="assert" content="The 'direction' property set to 'ltr' sets the direction of an element to left-to-right." />
        <style type="text/css">
            #wrapper
            {
                direction: rtl;
            }
            div div
            {
                direction: ltr;
                border: 2px solid blue;
            }
        </style>
    </head>
    <body>
        <p>Test passes if "Filler Text" is inside and aligned to the <strong>left side</strong> of hollow blue rectangle.</p>
        <div id="wrapper">
            <div>Filler Text</div>
        </div>
    </body>
</html>