diff options
Diffstat (limited to 'layout/reftests/bugs/641856-1.html')
-rw-r--r-- | layout/reftests/bugs/641856-1.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/bugs/641856-1.html b/layout/reftests/bugs/641856-1.html new file mode 100644 index 000000000..81c4868ac --- /dev/null +++ b/layout/reftests/bugs/641856-1.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html> + <head> + <style> + p { + background:gold; + width: 24em; + overflow: hidden; + + -moz-column-count: 2; + columns: 2; + + -moz-column-rule: solid; + column-rule: solid; + } + </style> + </head> + <body> + <p>Some<br>text</p> + </body> +</html> |