summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/paint-on-maskLayer-1b.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
commit0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch)
treea31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /layout/reftests/svg/paint-on-maskLayer-1b.html
parentInitial commit. (diff)
downloadfirefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz
firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/svg/paint-on-maskLayer-1b.html')
-rw-r--r--layout/reftests/svg/paint-on-maskLayer-1b.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/layout/reftests/svg/paint-on-maskLayer-1b.html b/layout/reftests/svg/paint-on-maskLayer-1b.html
new file mode 100644
index 0000000000..6c6a433d0b
--- /dev/null
+++ b/layout/reftests/svg/paint-on-maskLayer-1b.html
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<html>
+<title>Paint positioned mask onto mask layer</title>
+<style type="text/css">
+ #inner {
+ width: 200px;
+ height: 200px;
+ box-sizing:border-box;
+ background: blue;
+ /* make mask pained on mask layer */
+ border: 1px solid transparent;
+ will-change: transform;
+ }
+
+ #outer {
+ width: 200px;
+ height: 200px;
+ mask-image: url(#mymask);
+ /* make it fixed so that inner div has different AGR with outter div */
+ position: fixed;
+ }
+</style>
+<div id="outer">
+ <div id="inner"></div>
+</div>
+
+<svg height="0">
+ <defs>
+ <mask id="mymask" x="0" y="0" width="1" height="1">
+ <rect x="0" y="0" width="100" height="100" fill="white"/>
+ </mask>
+ </defs>
+</svg>
+</html> \ No newline at end of file