Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-shapes/shape-outside/assorted/float-retry-push-inset.html
<!DOCTYPE HTML> <meta charset="utf-8"> <title>Retry inline floats until they fit -- inset</title> <link rel="author" title="Brad Werth" href="mailto:bwerth@mozilla.com"> <link rel="author" title="Mozilla" href="http://www.mozilla.org/"> <link rel="help" href="https://drafts.csswg.org/css-shapes-1/"> <link rel="match" href="reference/float-retry-push-ref.html"> <meta name="assert" content="Test that a too-wide inline block is pushed in the block direction along a shape-outside inset until it fits."> <style> body { margin: 0px; line-height: 1; } #too-wide { display: inline-block; height: 20px; width: 250px; background: blue; } #shape { width: 100px; height: 100px; float: left; shape-outside: inset(0px 40px 40px 0px round 0 0 34.142136px 0); /* 34.142136 = 10 / (1 - (sqrt(2) / 2)) */ } </style> <div style="width: 300px; height: 100px;"> <div id="shape"></div> <span id="too-wide"></span> <div>
/css/css-shapes/shape-outside/assorted/reference/float-retry-push-ref.html
<!DOCTYPE HTML> <meta charset="utf-8"> <title>Reference for retrying floats and pushing them partway down the float area</title> <link rel="author" title="Brad Werth" href="mailto:bwerth@mozilla.com"> <link rel="author" title="Mozilla" href="http://www.mozilla.org/"> <style> body { margin: 0px; line-height: 1; } #too-wide { display: inline-block; height: 20px; width: 250px; background: blue; } </style> <div style="width: 300px; height: 100px"> <span id="too-wide" style="margin-top: 50px; margin-left: 50px;"></span> </div>