summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-text-background-not-interleaved-expected.html
blob: 945c3f7a38bdd459f800d34563e36d015ad29980 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<style>
.container {
    background-color: grey;
}
.element {
    background: lime;
    width: 100px;
}
</style>

<p>This test checks that grid items text and background are not interleaved.</p>
<p>The test passes if you see only "PASS" text and not "FAIL".</p>
<div class="container">
    <div class="element">PASS</div>
</div>