Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text/text-align/text-align-match-parent-05.html
<!DOCTYPE html> <html> <meta charset="utf-8"> <title>CSS Text 3 tests: match parent on text-align-last</title> <link rel="author" title="Florian RIvoal" href="https://florian.rivoal.net"> <link rel="help" href="http://www.w3.org/TR/css-text-3/#text-align-property"> <meta name="assert" content="Check that setting text-align to match parent has the correct effect on text-align-last (even if text-align-all is overridden)."> <link rel="match" href="text-align-match-parent-05-ref.html"> <style> section { font-family: monospace; width: 3ch; } div { text-align: match-parent; text-align-all: left; } </style> <p>Test passes if the two “2” are vertically aligned. <section dir=rtl> <div dir=ltr>1 2 2</div> </section>
/css/css-text/text-align/text-align-match-parent-05-ref.html
<!DOCTYPE html> <html> <meta charset="utf-8"> <title>CSS Text 3 tests: match parent on text-align-last</title> <link rel="author" title="Florian RIvoal" href="https://florian.rivoal.net"> <style> section { font-family: monospace; width: 3ch; } </style> <p>Test passes if the two “2” are vertically aligned. <section> <div>1 2<br> 2</div> </section>