diff options
Diffstat (limited to 'layout/reftests/bugs/348809-1b.html')
-rw-r--r-- | layout/reftests/bugs/348809-1b.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/layout/reftests/bugs/348809-1b.html b/layout/reftests/bugs/348809-1b.html new file mode 100644 index 0000000000..43ed710313 --- /dev/null +++ b/layout/reftests/bugs/348809-1b.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> +<head> +<style> +span { color: red } +:checked + span { color: green } +input { display: none } +</style> +</head> +<body> +<input type="checkbox" checked="checked" id="foo"><span>There should be no red</span> +</body> +</html> |