diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /layout/reftests/invalidation/mask-invalidation-1a.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/invalidation/mask-invalidation-1a.html')
-rw-r--r-- | layout/reftests/invalidation/mask-invalidation-1a.html | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/layout/reftests/invalidation/mask-invalidation-1a.html b/layout/reftests/invalidation/mask-invalidation-1a.html new file mode 100644 index 0000000000..594cbbca8f --- /dev/null +++ b/layout/reftests/invalidation/mask-invalidation-1a.html @@ -0,0 +1,77 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <head> + <meta charset="utf-8"> + <title>CSS Masking: mask invalidation.</title> + <style type="text/css"> + div.outer { + background-color: purple; + position: absolute; + margin: 1px 2px 3px 4px; + border: solid purple; + width: 40px; + height: 20px; + } + + div.mask { + mask-size: 100% 100%; + mask-origin: border-box; + mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="100%" height="50%" fill="blue" fill-opacity="1"/><rect x="0" y="50%" width="100%" height="50%" fill="blue" fill-opacity="0"/></svg>'); + } + + #d1 { + top: 10px; + left: 10px; + mask-clip: padding-box; + border-width: 10px; + padding: 0px; + } + + #d2 { + top: 10px; + left: 110px; + mask-clip: padding-box; + border-width: 0px; + padding: 10px; + } + + #d3 { + top: 15px; + left: 215px; + mask-clip: content-box; + border-width: 10px; + padding: 0px; + } + </style> + </head> + <body> + <div id="d1" class="outer mask"></div> + <div id="d2" class="outer mask"></div> + <div id="d3" class="outer mask"></div> + <script type="text/javascript"> + function invalidateMaskedElements() + { + // Shrink border area, thicken padding area. Keep ths size of this + // division unchanged. + document.getElementById("d1").style.borderWidth = "5px"; + document.getElementById("d1").style.padding = "5px"; + + // Shrink padding area, thicken border area. Keep ths size of this + // division unchanged. + document.getElementById("d2").style.borderWidth = "5px"; + document.getElementById("d2").style.padding = "5px"; + + // Shrink border area, thicken content area. Keep ths size of this + // division unchanged. + document.getElementById("d3").style.width = "50px"; + document.getElementById("d3").style.height = "30px"; + document.getElementById("d3").style.borderWidth = "0px"; + + document.documentElement.removeAttribute("class"); + } + + document.addEventListener("MozReftestInvalidate", + invalidateMaskedElements); + </script> + </body> +</html> |