diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/bugs/534526-1a.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layout/reftests/bugs/534526-1a.html b/layout/reftests/bugs/534526-1a.html new file mode 100644 index 0000000000..705c25e62e --- /dev/null +++ b/layout/reftests/bugs/534526-1a.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <style> + span { color: green; } + [style*=red] + * { color: red; } + </style> + </head> + <body onload="document.getElementById('x').style.color = 'blue'"> + <span id="x" style="color: red"></span><span>This should be green</span> + </body> +</html> |