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