diff options
Diffstat (limited to 'layout/reftests/bugs/524175-1.html')
-rw-r--r-- | layout/reftests/bugs/524175-1.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/layout/reftests/bugs/524175-1.html b/layout/reftests/bugs/524175-1.html new file mode 100644 index 0000000000..b571b3758d --- /dev/null +++ b/layout/reftests/bugs/524175-1.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<style> + #foo::before { color: green; content: "This text should be green"; } + span::before { color: red; } +</style> +<body> + <span id="foo"></span> +</body> |