testing/web-platform/tests/css/css-backgrounds/reference/border-image-007-ref.html
author Duncan McIntosh <dmcintosh@mozilla.com>
Wed, 09 Jul 2025 19:42:02 +0000 (4 hours ago)
changeset 795924 9ccc6a2267cbf69c621fec973bd28573c2a45a1f
parent 668707 23513d4d72142f4ffc38399a6ad4016cbdf57ace
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>

  <meta charset="UTF-8">

  <title>CSS Reftest reference</title>

  <style>
  div.outer
    {
      height: 20px;
      margin-bottom: 16px;
      width: 20px;
    }

  div.inside
    {
      background-color: blue;
      height: 12px;
      margin: 2px 4px 6px 8px;
      width: 8px;
    }

  div#first-subtest
    {
      border: green solid 1px;
      padding: 39px;
    }

  div#second-subtest
    {
      border-top: green solid 1px;
      border-right: green solid 5px;
      border-bottom: green solid 1px;
      border-left: green solid 5px;
      padding: 39px 35px;
    }

  div#third-subtest
    {
      border-top: green solid 1px;
      border-right: green solid 5px;
      border-bottom: green solid 10px;
      border-left: green solid 5px;
      padding: 39px 35px 30px;
    }

  div#fourth-subtest
    {
      border-top: green solid 1px;
      border-right: green solid 5px;
      border-bottom: green solid 10px;
      border-left: green solid 15px;
      padding: 39px 35px 30px 25px;
    }
  </style>

  <div class="outer" id="first-subtest"><div class="inside"></div></div>

  <div class="outer" id="second-subtest"><div class="inside"></div></div>

  <div class="outer" id="third-subtest"><div class="inside"></div></div>

  <div class="outer" id="fourth-subtest"><div class="inside"></div></div>