blob: a54bc3a6d8945de0444bb9f154da17d113d4d7d9 [file] [log] [blame]
<html>
<head>
<style type="text/css">
div {
background-color: red;
border: 1px solid black;
width: 100px;
height: 100px;
}
:matches(div + div) {
background-color: green;
}
</style>
</head>
<body>
<p>If the test pass, there should be one red block followed by 3 green blocks.</p>
<div></div>
<div></div>
<div></div>
<div></div>
</body>
</html>