diff options
Diffstat (limited to 'layout/reftests/bugs/367612-1a.html')
-rw-r--r-- | layout/reftests/bugs/367612-1a.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/layout/reftests/bugs/367612-1a.html b/layout/reftests/bugs/367612-1a.html new file mode 100644 index 000000000..dc27be6fe --- /dev/null +++ b/layout/reftests/bugs/367612-1a.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <style> * { color: red } </style> + <style id="t"></style> + </head> + <body> + <span class="test">This text should be green</span> + <script> + document.getElementById("t"). + appendChild(document.createTextNode("* { color: green }")); + </script> + </body> +</html> |