testing/web-platform/tests/css/css-break/flexbox/multi-line-row-flex-fragmentation-077.html
author Florian Quèze <florian@queze.net>
Tue, 08 Jul 2025 20:48:53 +0000 (11 hours ago)
changeset 795809 b01190f141a12f4b506acb1f4476561c4b0f2407
parent 686461 a8872dc769f01377e60f0d257262609d1b290771
permissions -rw-r--r--
Bug 1960567 - remove the last C++ and scriptable APIs to accumulate data to legacy telemetry histograms, r=chutten. Differential Revision: https://phabricator.services.mozilla.com/D255582
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1500947">
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
<style>
  .flex {
    display: flex;
    flex-flow: row wrap;
  }
  .flex > div {
    flex: 0 0 100%;
    background: green;
  }
  .flex > div > div {
    contain:size;
    height: 50px;
  }
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="width:100px; height:100px; background:red;">
  <div style="columns:2; gap:0; column-fill:auto; height:110px;">
    <div style="height:10px;">
      <div style="height:50px; background:green;"></div>
      <div class="flex">
        <div><div></div></div>
        <div><div></div></div>
        <div><div></div></div>
      </div>
    </div>
  </div>
</div>