diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/bugs/1384275-1.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/layout/reftests/bugs/1384275-1.html b/layout/reftests/bugs/1384275-1.html new file mode 100644 index 0000000000..a5b12b9991 --- /dev/null +++ b/layout/reftests/bugs/1384275-1.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<style> +p { color: red; } +@import url(https://example.invalid/a.css); +@supports (color: green) { + p { color: green; } +} +</style> +<p>This text should be green.</p> |