Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-flexbox/flexbox_stf-table-singleline-2.html
<!DOCTYPE html> <title>flexbox | singleline flexcontainer versus stf :: table</title> <link rel="author" href="http://opera.com" title="Opera Software"> <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-items"> <link rel="match" href="flexbox_stf-table-singleline-ref.html"> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> <style> #test { background: blue; display: table; } div div { background: red; width: 0; display: flex; } p { font-family: Ahem; margin: 1em 0; width: 200px; } p:last-child { margin-right: 200em; } </style> <div id="test"> <div> <p>filler</p> <p>filler</p> <p>filler</p> <p>filler</p> <p>filler</p> </div> </div>
/css/css-flexbox/flexbox_stf-table-singleline-ref.html
<!DOCTYPE html> <title>flexbox | singleline flexcontainer versus stf :: table</title> <link rel="author" href="http://opera.com" title="Opera Software"> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> <style> div, p { font-family: Ahem; display: inline-block; } p { margin: 1em 0; } </style> <div> <p>fillerfillerfillerfillerfiller</p> </div>