Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS Test: Bidi box model test 2</title> <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/> <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#bidi-box-model"/> <link rel="match" href="right-rtl-ref.xht"/> <style type="text/css"><![CDATA[ .r { direction: rtl; } .l { direction: ltr; } span { border: 2px solid; padding: 0 10px 0 5px; margin: 0 60px 0 30px; } ]]></style> </head> <body> <div class="r"><span>One<br/>Two</span></div> </body> </html>
/css/CSS2/box/right-rtl-ref.xht
<!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"> <head> <title>CSS Reftest Reference</title> <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/> </head> <body> <div style="direction: rtl"> <span style="border: 2px solid; border-left-style: none; padding-right: 10px; margin-right: 60px;">One</span> <br/> <span style="border: 2px solid; border-right-style: none; padding-left: 5px; margin-left: 30px;">Two</span> </div> </body> </html>