diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/bugs/352980-1d.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/bugs/352980-1d.html b/layout/reftests/bugs/352980-1d.html new file mode 100644 index 0000000000..8ca2918e33 --- /dev/null +++ b/layout/reftests/bugs/352980-1d.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> + <head> + <style> + span { color: red } + :default + span { color: green } + span.reverse { color: green } + :default + span.reverse { color: red } + input { display: none } + </style> + </head> + <body> + <form> + <input><input type="image"><span>This should be green</span> + </form> + </body> +</html> |