diff options
Diffstat (limited to 'layout/reftests/bugs/571281-1b.html')
-rw-r--r-- | layout/reftests/bugs/571281-1b.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/bugs/571281-1b.html b/layout/reftests/bugs/571281-1b.html new file mode 100644 index 000000000..e02c09705 --- /dev/null +++ b/layout/reftests/bugs/571281-1b.html @@ -0,0 +1,19 @@ +<!doctype html> +<html> +<head> +<style> +li { + list-style-position: inside; + -moz-column-count: 2; + column-count: 2; +} +</style> +</head> +<body> + +<ul> + <li>Test (inside).</li> +</ul> + +</body> +</html> |