testing/web-platform/tests/css/css-multicol/multicol-span-all-fieldset-003-ref.html
author Duncan McIntosh <dmcintosh@mozilla.com>
Wed, 09 Jul 2025 19:42:02 +0000 (2 hours ago)
changeset 795924 9ccc6a2267cbf69c621fec973bd28573c2a45a1f
parent 588887 11f782bff7fc46f44d97c825291aa9d058849ee4
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>
<html>
  <meta charset="utf-8">
  <title>CSS Multi-column Layout Test: Test a overflow:hidden and position:absolute multi-column container on fieldset works with a column-span:all child and position:fixed boxes</title>
  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
  <link rel="author" title="Mozilla" href="http://www.mozilla.org/">

  <style>
  fieldset {
    width: 400px;
    overflow: hidden;
    position: absolute;
  }
  .inner {
    column-count: 3;
    column-rule: 6px solid;
  }
  h3 {
    column-span: all;
    outline: 1px solid blue;
  }
  a {
    position: fixed;
    width: 1em;
    height: 1em;
    background-color: blue;
  }
  </style>

  <fieldset>
    <legend>Legend<a></a></legend>
    <div class="inner">
      <div>block1</div><div>block2</div><a></a>
      <h3>spanner<a></a></h3>
      <div>block3</div><div>block4</div><a></a>
    </div>
  </fieldset>
</html>