blob: 4a44463179917f0f6501d5de62b83dc16fa57c97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset='utf-8'>
<title>dynamic sibling selector testcase</title>
<style>
#adjacent, #general {
background: #cfc;
}
</style>
</head>
<body>
<div>
<div id="adjacent">PASS: You should see this</div>
</div>
<div>
<div id="general">PASS: You should also see this</div>
</div>
</body>
</html>
|