chromium/third_party/blink/web_tests/fast/css-grid-layout/grid-painting-items-only-once-expected.html

<!DOCTYPE html>
<html>
<head>
    <link href="resources/grid.css" rel="stylesheet">
    <style>
        .grid div {
            background-color: transparent;
        }
    </style>
</head>
<body>
    <div>
        This test shows 4 grids where all the items are placed in several cells (span or areas).<br>
        It passes if these grid items are painted only once.
    </div>
    <div class="grid">
        <div class="firstRowFirstColumn">item</div>
        <div class="secondRowFirstColumn">item</div>
    </div>
    <div class="grid">
        <div class="firstRowFirstColumn">item</div>
        <div class="firstRowSecondColumn">item</div>
    </div>
    <div class="grid">
        <div class="firstRowFirstColumn">item</div>
        <div class="secondRowFirstColumn">item</div>
    </div>
    <div class="grid">
        <div class="firstRowFirstColumn">item</div>
        <div class="firstRowSecondColumn">item</div>
    </div>
</body>
</html>