blob: 67791a870fe63019c13009a14e2acd8d93e8042f [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<head>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
<style>
.grid {
display: grid;
width: 100px;
height: 100px;
grid-template-columns: 100px;
grid-template-rows: 100px;
align-items: start;
justify-items: start;
}
.item {
width: 10px;
height: 10px;
min-width: 0;
min-height: 0;
grid-column: 1/2;
grid-row: 1/2;
}
</style>
</head>
<p>PASS if there is no crash in debug.</p>
<div class="grid">
<div class="item"></div>
</div>
</html>