| <!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> |