Status: FAIL | Duration: 17ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-position/position-static-001.html
<!DOCTYPE html> <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com"> <link rel="help" href="https://drafts.csswg.org/css-position/#insets"> <link rel="help" href="https://github.com/servo/servo/issues/39399"> <link rel="match" href="../reference/ref-filled-green-200px-square.html"> <meta name="assert" content="Inset propeties do not apply to a statically positioned grid item."> <style> #grid { display: grid; width: 200px; height: 200px; background: red; } #item { width: 200px; height: 200px; top: 200px; left: 200px; background: green; } </style> <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> <div id="grid"> <div id="item"></div> </div>
/css/reference/ref-filled-green-200px-square.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Reftest Reference</title> <link rel="author" title="Javier Fernandez Garcia-Boente" href="jfernandez@igalia.com" /> <style> div { background-color: green; height: 200px; width: 200px; } </style> <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> <div></div>