diff options
Diffstat (limited to 'layout/reftests/bugs/921716-1.html')
-rw-r--r-- | layout/reftests/bugs/921716-1.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/bugs/921716-1.html b/layout/reftests/bugs/921716-1.html new file mode 100644 index 000000000..6dbef08bc --- /dev/null +++ b/layout/reftests/bugs/921716-1.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<style> +div { + -moz-column-count: 3; + -moz-column-gap: 8px; + -moz-column-rule: thick solid red; + visibility: hidden; + width: 300px; + background-color: #fcc; +} +span { + visibility: visible; +} +</style> +<div> + <span>This is some content that is still shown within the columns.</span> +</div> |