diff options
Diffstat (limited to 'layout/reftests/bugs/534804-1-ref.html')
-rw-r--r-- | layout/reftests/bugs/534804-1-ref.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/bugs/534804-1-ref.html b/layout/reftests/bugs/534804-1-ref.html new file mode 100644 index 0000000000..4a44463179 --- /dev/null +++ b/layout/reftests/bugs/534804-1-ref.html @@ -0,0 +1,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> |