testing/web-platform/tests/css/css-masking/mask-image/mask-size-contain-position-fifty-fifty-ref.html
author Dave Townsend <dtownsend@oxymoronical.com>
Mon, 14 Jul 2025 14:08:24 +0000 (14 hours ago)
changeset 796524 2ef57d67fd0616c054a8e385c6b76d6342e81f75
parent 603079 447f2d492945f876ceba80ec69643b2526753a01
permissions -rw-r--r--
Bug 1975002: Ensure we fully decode images before trying to use them in the Dock or Taskbar. r=profiles-reviewers,niklas Differential Revision: https://phabricator.services.mozilla.com/D256996
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS Masking: mask-size: mask layer size</title>
    <link rel="author" title="Astley Chen" href="mailto:aschen@mozilla.com">
    <link rel="author" title="Mozilla" href="https://www.mozilla.org">
    <style type="text/css">
      #outer {
        border: 1px solid black;
        width: 64px;
        height: 128px;
      }

      #inner1 {
        width: 64px;
        height: 32px;
      }

      #inner2 {
        width: 64px;
        height: 64px;
        background-color: purple;
      }
    </style>
  </head>
  <body>
    <div id="outer">
      <div id="inner1"></div>
      <div id="inner2"></div>
    </div>
  </body>
</html>