diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/invalidation/mask-invalidation-2d.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/invalidation/mask-invalidation-2d.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/layout/reftests/invalidation/mask-invalidation-2d.html b/layout/reftests/invalidation/mask-invalidation-2d.html new file mode 100644 index 0000000000..5fa5d96270 --- /dev/null +++ b/layout/reftests/invalidation/mask-invalidation-2d.html @@ -0,0 +1,50 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <head> + <meta charset="utf-8"> + <title>CSS Masking: mask invalidation.</title> + <style type="text/css"> + div.outer { + position: absolute; + background-color: purple; + border: solid purple; + width: 200px; + height: 200px; + } + + div.mask { + mask-image: url(#m1); + } + + div.inner { + width: 5px; + height: 5px; + border: 1px solid transparent; + will-change: transform; + } + + </style> + </head> + <body> + <div id="d1" class="outer mask"><div class="inner"></div></div> + <script type="text/javascript"> + function changeMask() + { + document.getElementById("r1").setAttribute("width", "50"); + document.getElementById("r1").setAttribute("height", "50"); + document.getElementById("r1").setAttribute("x", "100"); + document.getElementById("r1").setAttribute("y", "100"); + + document.documentElement.removeAttribute("class"); + } + + document.addEventListener("MozReftestInvalidate", + changeMask); + </script> + <svg height="0"> + <mask id="m1" x="0" y="0" width="1" height="1"> + <rect id="r1" x="50" y="50" width="100" height="100" style="stroke:none; fill: #ffffff;"/> + </mask> + </svg> + </body> +</html> |