testing/web-platform/tests/css/css-masking/mask-image/mask-composite-2-ref.html
author Cosmin Sabou <csabou@mozilla.com>
Sat, 12 Jul 2025 09:18:08 +0300 (3 hours ago)
changeset 796290 5ad1f0c58c82bdfa2f42fed870bbe143465398d0
parent 603079 447f2d492945f876ceba80ec69643b2526753a01
permissions -rw-r--r--
Revert "Bug 1977019 - re-enable hw video decoding testing. r=media-playback-reviewers,jolin" for causing win mda failures on test_hw_video_decoding.html This reverts commit 158474bdc0cf585b701bc47921f0a7d84f7bb84d.
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS mask-composite reference</title>
    <link rel="author" title="CJ Ku" href="mailto:cku@mozilla.com">
    <link rel="author" title="Mozilla" href="https://www.mozilla.org">
    <style type="text/css">
      div {
        position: absolute;
        margin: 0px;
        padding: 0px;
        width: 100px;
        height: 100px;
        top: 10px;
      }

      div.add {
        left: 10px;
        background-color: blue;
      }

      div.subtract {
        left: 120px;
        background-image: url(support/blue-100x50-transparent-100x50.svg);
      }

      div.exclude {
        left: 340px;
        background-color: blue;
      }
    </style>
  </head>
  <body>
    <div class="add"></div>
    <div class="subtract"></div>
    <div class="exclude"></div>
  </body>
</html>