Bug 1917371 - Consolidate unit_base_updater and unit_service_updater tests, r=bytesiz...
[gecko.git] / layout / reftests / css-shapes / shape-outside-empty-ellipse-7.html
blob61933786ef6c9324cab9c552e9daae2a29923fa4
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
5 <title>Shape-outside empty point ellipse, positioned between elements, acts like nothing</title>
6 <style>
7 body {
8 line-height: 0;
10 .container {
11 width: 600px;
13 box {
14 display: inline-block;
15 background-color: blue;
16 width: 100px;
17 height: 20px;
19 .shape {
20 float: left;
21 width: 200px;
22 height: 180px;
23 shape-outside: ellipse(0px 0px at 100px 20px);
25 </style>
26 </head>
27 <body>
28 <div class="container">
29 <div class="shape"></div>
30 <box></box><br>
31 <box></box><br>
32 <box></box><br>
33 <box></box><br>
34 <box></box><br>
35 <box></box><br>
36 <box></box><br>
37 <box></box><br>
38 <box></box><br>
39 </div>
40 </body>
41 </html>