text-align-match-parent-root-ltr

CSS Text: text-align: match-parent

WeasyPrint

Reference (good) by WeasyPrint

Reference (good) by this browser

This browser

Assertion
Text checks that text-align: match-parent on a root element with dir=ltr is equivalent to text-align: start

Source

 1 <!DOCTYPE html>
 2 <html dir="ltr"><head>
 3     <meta charset="utf-8">
 4     <title>CSS Text: text-align: match-parent</title>
 5     <link href="mailto:smontagu@mozilla.com" rel="author" title="Simon Montagu">
 6     <link href="http://www.w3.org/TR/css-text-3/#text-align-property" rel="help">
 7     <meta content="Text checks that
 8       text-align: match-parent on a root element with dir=ltr is
 9       equivalent to text-align: start" name="assert">
10     <link href="reference/text-align-match-parent-root-ltr-ref.htm" rel="match">
11     <style type="text/css">
12 html { text-align: match-parent; }
13     </style>
14   </head>
15   <body>
16     <p>This line should be aligned left</p>
17   
18 
19 </body></html>