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