chromium/third_party/blink/web_tests/fast/css-grid-layout/grid-item-order-paint-order-expected.html

<!DOCTYPE html>
<html>
<head>
<style>
.grid {
    width: 100px;
    height: 100px;
    background-color: green;
}
</style>
</head>
<body>
    <p>This test checks that 'order' changes the paint ordering.</p>
    <p>There should be 2 green squares below.</p>
    <div class="grid"></div>

    <div class="grid"></div>
</body>
</html>