diff options
Diffstat (limited to 'layout/reftests/css-shapes/shape-outside-empty-ellipse-6.html')
-rw-r--r-- | layout/reftests/css-shapes/shape-outside-empty-ellipse-6.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/layout/reftests/css-shapes/shape-outside-empty-ellipse-6.html b/layout/reftests/css-shapes/shape-outside-empty-ellipse-6.html new file mode 100644 index 0000000000..395cf5d6e0 --- /dev/null +++ b/layout/reftests/css-shapes/shape-outside-empty-ellipse-6.html @@ -0,0 +1,42 @@ +<!DOCTYPE html> +<html> +<head> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> +<title>Shape-outside empty vertical ellipse, with shape-margin acts like a capsule (with rounded endpoints at top and bottom)</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(0px 100px at 100px 100px); + shape-margin: 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> |