Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/anonymous-grid-items-001.html
<!DOCTYPE html> <html> <title>CSS Grid: anonynous grid items.</title> <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com"> <link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-items"> <link rel="match" href="reference/anonymous-grid-items-001-ref.html"> <meta name="assert" content="This test ensures that anonymous grid items are supported."/> <body> <div>The test passes if it has the same output than the reference.</div> <div style="display: grid;"> anonymous item </div> </body> </html>
/css/css-grid/reference/anonymous-grid-items-001-ref.html
<!DOCTYPE html> <html> <body> <div>The test passes if it has the same output than the reference.</div> <div> <div>anonymous item</div> </div> </body> </html>