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