mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
22 lines
357 B
HTML
22 lines
357 B
HTML
<!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>
|