Status: PASS | Duration: 3ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi
/css/css-grid/grid-lanes/tentative/parsing/grid-lanes-shorthand-crash.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Grid Lanes Test: grid-lanes shorthand with repeat() and var() should not crash</title> <link rel="author" title="Yanling Wang" href="mailto:yanlingwang@microsoft.com"> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> </head> <body> <p>Test passes if it does not crash.</p> <div style="--size: 60px; width: 300px;"> <div style="display: grid-lanes; grid-lanes: repeat(auto-fill, var(--size));"> <div style="width: 50px; height: 30px; background: coral;"></div> </div> </div> </body> </html>