diff options
Diffstat (limited to 'layout/reftests/bugs/50630-5.html')
-rw-r--r-- | layout/reftests/bugs/50630-5.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/layout/reftests/bugs/50630-5.html b/layout/reftests/bugs/50630-5.html new file mode 100644 index 0000000000..b05a67325f --- /dev/null +++ b/layout/reftests/bugs/50630-5.html @@ -0,0 +1,24 @@ +<!doctype html> +<html> +<head> +<style type="text/css"> +html, body, ul, li { + margin: 0; padding: 0; +} +ul { + list-style-position: inside; +} +li { + margin: 1em; +} +span { + float: right; +} +</style> +</head> +<body> +<ul> + <li><span>Float</span>Test</li> +</ul> +</body> +</html> |