diff options
Diffstat (limited to 'layout/reftests/bugs/367612-1c.html')
-rw-r--r-- | layout/reftests/bugs/367612-1c.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/bugs/367612-1c.html b/layout/reftests/bugs/367612-1c.html new file mode 100644 index 0000000000..539f472afe --- /dev/null +++ b/layout/reftests/bugs/367612-1c.html @@ -0,0 +1,18 @@ +<!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: ")); + // Flush reflow + document.body.offsetWidth; + document.getElementById("t"). + appendChild(document.createTextNode("green }")); + </script> + </body> +</html> |