Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-045.html
<!DOCTYPE html> <!-- Any copyright is dedicated to the Public Domain. - http://creativecommons.org/publicdomain/zero/1.0/ --> <html> <meta charset="utf-8"> <title>CSS Shape Test: float right, ellipse(100% 100%)</title> <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> <link rel="author" title="Mozilla" href="http://www.mozilla.org/"> <link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes"> <link rel="match" href="reference/shape-outside-ellipse-045-ref.html"> <meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape ellipse(100% 100%) value."> <style> .container { direction: rtl; width: 200px; line-height: 0; } .shape { float: right; shape-outside: ellipse(100% 100%); clip-path: ellipse(100% 100%); /* Rendered as a rectangle */ box-sizing: content-box; height: 40px; width: 40px; padding: 20px 10px; border: solid lightgreen; border-width: 20px 10px; background-color: orange; } .box { display: inline-block; width: 80px; background-color: blue; } </style> <main class="container"> <div class="shape"></div> <div class="box" style="height: 24px;"></div> <div class="box" style="height: 36px;"></div> <div class="box" style="height: 36px;"></div> <div class="box" style="height: 24px;"></div> </main> </html>
/css/css-shapes/shape-outside/supported-shapes/ellipse/reference/shape-outside-ellipse-045-ref.html
<!DOCTYPE html> <!-- Any copyright is dedicated to the Public Domain. - http://creativecommons.org/publicdomain/zero/1.0/ --> <html> <meta charset="utf-8"> <title>CSS Shape Test: float right, ellipse(100% 100%) reference</title> <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> <link rel="author" title="Mozilla" href="http://www.mozilla.org/"> <style> .container { direction: rtl; position: absolute; width: 200px; line-height: 0; } .shape { float: right; /* Omit shape-outside */ clip-path: ellipse(100% 100%); box-sizing: content-box; height: 40px; width: 40px; padding: 20px 10px; border: solid lightgreen; border-width: 20px 10px; background-color: orange; } .box { position: absolute; width: 80px; background-color: blue; } </style> <main class="container"> <div class="shape"></div> <div class="box" style="height: 24px; top: 0px; right: 80px;"></div> <div class="box" style="height: 36px; top: 24px; right: 80px;"></div> <div class="box" style="height: 36px; top: 60px; right: 80px;"></div> <div class="box" style="height: 24px; top: 96px; right: 80px;"></div> </main> </html>