blob: d754b508be88a2ca774cbd1c3fa0eeb57850d67e [file] [log] [blame]
<!doctype html>
<html>
<head>
<style>
.target {
display: block;
}
target1::before, target2 {
content:"WebKit!";
color: white;
background-color: green;
}
</style>
</head>
<body>
<p>Verify that selectors with duplicated ::before pseudo elements never match. If the test pass, you should see a box with a green background an the test "WebKit!" written in white.</p>
<target1 class="target" id="target"></target1>
<target2 class="target" id="target"></target2>
</body>
</html>