Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/grid-definition/grid-repeat-out-of-bounds-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<div id="a">
<div id="b"></div>
</div>
<style>
#a {
display: grid;
grid: repeat(2,0) / auto-flow;
}
#b {
grid-column-start: custom-ident;
}
</style>