Status: FAIL | Duration: 12ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-shapes/shape-outside/supported-shapes/polygon/shape-outside-polygon-024.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: sideways-lr, float left, polygon(60px 20px, 100px 60px, 20px 60px, 60px 100px) border-box</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-polygon-024-ref.html"> <meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the polygon(60px 20px, 100px 60px, 20px 60px, 60px 100px) border-box value under sideways-lr writing-mode."> <style> .container { writing-mode: sideways-lr; inline-size: 200px; line-height: 0; } .shape { float: left; shape-outside: polygon(60px 20px, 100px 60px, 20px 60px, 60px 100px) border-box; clip-path: polygon(60px 20px, 100px 60px, 20px 60px, 60px 100px) border-box; box-sizing: content-box; block-size: 40px; inline-size: 40px; padding: 20px; margin: 20px; border: 20px solid lightgreen; background-color: orange; } .box { display: inline-block; inline-size: 80px; background-color: blue; } .long { inline-size: 200px; } </style> <main class="container"> <div class="shape"></div> <div class="long box" style="block-size: 30px;"></div> <!-- Fill the margin and partial border space --> <div class="box" style="block-size: 30px;"></div> <div class="box" style="block-size: 20px;"></div> <div class="box" style="block-size: 20px;"></div> <div class="box" style="block-size: 30px;"></div> <div class="long box" style="block-size: 30px;"></div> <!-- Fill the margin and partial border space --> </main> </html>
/css/css-shapes/shape-outside/supported-shapes/polygon/reference/shape-outside-polygon-024-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: sideways-lr, float left, polygon(60px 20px, 100px 60px, 20px 60px, 60px 100px) border-box 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 { writing-mode: sideways-lr; position: absolute; inline-size: 200px; line-height: 0; } .shape { float: left; /* Omit shape-outside */ clip-path: polygon(60px 20px, 100px 60px, 20px 60px, 60px 100px) border-box; box-sizing: content-box; block-size: 40px; inline-size: 40px; padding: 20px; border: 20px solid lightgreen; margin: 20px; background-color: orange; } .box { position: absolute; inline-size: 80px; background-color: blue; } .long { inline-size: 200px; } </style> <main class="container"> <div class="shape"></div> <div class="long box" style="block-size: 30px; inset-block-start: 0; inset-inline-start: 0;"></div> <!-- Fill the margin and partial border space --> <div class="box" style="block-size: 30px; inset-block-start: 30px; inset-inline-start: 80px;"></div> <div class="box" style="block-size: 20px; inset-block-start: 60px; inset-inline-start: 80px;"></div> <div class="box" style="block-size: 20px; inset-block-start: 80px; inset-inline-start: 120px;"></div> <div class="box" style="block-size: 30px; inset-block-start: 100px; inset-inline-start: 100px;"></div> <div class="long box" style="block-size: 30px; inset-block-start: 130px; inset-inline-start: 0;"></div> <!-- Fill the margin and partial border space --> </main> </html>