blob: df07e6a5f03081f0b44cd2ce7a530bf66d60fb9a [file] [edit]
<!DOCTYPE html>
<link href="resources/grid.css" rel="stylesheet">
<style>
.grid {
-webkit-grid-template-columns: 50px 50px;
}
.firstRowFirstColumnSpanning2 {
background: lime;
-webkit-grid-column: 1 / span 2;
-webkit-grid-row: 1;
}
</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="grid">
<div class="firstRowSecondColumn">FAIL</div>
<div class="firstRowFirstColumnSpanning2">PASS</div>
</div>