diff options
Diffstat (limited to 'layout/reftests/css-shapes/shape-outside-empty-ellipse-3.html')
-rw-r--r-- | layout/reftests/css-shapes/shape-outside-empty-ellipse-3.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/layout/reftests/css-shapes/shape-outside-empty-ellipse-3.html b/layout/reftests/css-shapes/shape-outside-empty-ellipse-3.html new file mode 100644 index 0000000000..8e5d50855f --- /dev/null +++ b/layout/reftests/css-shapes/shape-outside-empty-ellipse-3.html @@ -0,0 +1,41 @@ +<!DOCTYPE html> +<html> +<head> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> +<title>Shape-outside empty horizontal ellipse, acts like a point</title> +<style> + body { + line-height: 0; + } + .container { + width: 600px; + } + box { + display: inline-block; + background-color: blue; + width: 100px; + height: 20px; + } + .shape { + float: left; + width: 200px; + height: 180px; + shape-outside: ellipse(50px 0px at 50px 90px); + } +</style> +</head> +<body> +<div class="container"> +<div class="shape"></div> +<box></box><br> +<box></box><br> +<box></box><br> +<box></box><br> +<box></box><br> +<box></box><br> +<box></box><br> +<box></box><br> +<box></box><br> +</div> +</body> +</html> |