testing/web-platform/tests/css/css-break/background-image-001.html
author Duncan McIntosh <dmcintosh@mozilla.com>
Wed, 09 Jul 2025 19:42:02 +0000 (7 hours ago)
changeset 795924 9ccc6a2267cbf69c621fec973bd28573c2a45a1f
parent 590788 348d428e23a50b1a06220684f2a13c53c7e5c6c4
permissions -rw-r--r--
Bug 1966586 - Reuse other browser windows when opening _blank links in Taskbar Tabs windows. r=nrishel This doesn't affect other tab additions, nor does it stop the tab bar from appearing altogether. The idea is that _if_ another tab is somehow made, the user should see it; but we should not create new tabs if we can avoid it. This also adds tests for opening URIs in popups and taskbar tabs to make it less likely that this breaks in future. Differential Revision: https://phabricator.services.mozilla.com/D253726
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-break-3/#valdef-box-decoration-break-slice">
<link rel="help" href="https://www.w3.org/TR/css-backgrounds-3/#background-image">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1200242">
<link rel="match" href="background-image-001-ref.html">
<style>
  .container {
    writing-mode: vertical-rl;
    inline-size: 472px;
  }
  .mc {
    columns: 3;
    column-gap: 10px;
    column-fill: auto;
    block-size: 120px;
    border: 1px solid;
    margin-block-end: 20px;
    background: yellow;
  }
</style>
<div class="container">
  <div class="mc">
    <div style="block-size:350px; background:red url(../support/cat.png) left top;"></div>
  </div>
  <div class="mc">
    <div style="block-size:350px; background:red url(../support/cat.png) right top;"></div>
  </div>
  <div class="mc">
    <div style="block-size:350px; background:red url(../support/cat.png) left bottom;"></div>
  </div>
  <div class="mc">
    <div style="block-size:350px; background:red url(../support/cat.png) right bottom;"></div>
  </div>
</div>