Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-flexbox/anonymous-flex-item-006.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Flexbox Test: Flex item - non-contiguous text runs - position:absolute and node removal</title> <link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org"> <link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-items"> <link rel="match" href="anonymous-flex-item-split-ref.html"> <style>.abs { position:absolute }</style> <p>The words "Two" and "lines" should not be on the same line.</p> <div style="display:flex;flex-direction:column">Two <span class="abs"></span><span id="spanRemove"></span><span class="abs"></span>lines</div> <script> document.body.offsetTop; spanRemove.remove(); </script>
/css/css-flexbox/anonymous-flex-item-split-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Reftest Reference</title> <link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org"> <p>The words "Two" and "lines" should not be on the same line.</p> Two<br> lines