summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-shapes/shape-outside-empty-inset-5.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-shapes/shape-outside-empty-inset-5.html')
-rw-r--r--layout/reftests/css-shapes/shape-outside-empty-inset-5.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/layout/reftests/css-shapes/shape-outside-empty-inset-5.html b/layout/reftests/css-shapes/shape-outside-empty-inset-5.html
new file mode 100644
index 0000000000..27d562e447
--- /dev/null
+++ b/layout/reftests/css-shapes/shape-outside-empty-inset-5.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+<title>Shape-outside empty vertical flat inset, acts like a line</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: inset(0% 5% 0% 95%);
+ }
+</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>