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/svg/clipPath-css-transform-ref.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/svg/clipPath-css-transform-ref.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/svg/clipPath-css-transform-ref.html b/layout/reftests/svg/clipPath-css-transform-ref.html new file mode 100644 index 0000000000..d4038e92ca --- /dev/null +++ b/layout/reftests/svg/clipPath-css-transform-ref.html @@ -0,0 +1,18 @@ +<svg style="width: 400px; height: 400px; border: 1px solid red"> + <defs> + <clipPath id="clipPath1"> + <rect id="rec1" x="15px" y="15px" width="40px" height="40px" /> + <rect id="rec2" width="20px" height="10px" /> + </clipPath> + <clipPath id="clipPath2"> + <rect id="rec3" x="100px" y="100px" width="40px" height="40px" /> + </clipPath> + <clipPath id="clipPath3" transform="translate(100,100)"> + <rect id="rec4" x="200px" y="200px" width="40px" height="40px" /> + </clipPath> + </defs> + + <circle cx="25px" cy="25px" r="20px" fill="skyblue" clip-path="url(#clipPath1)" /> + <circle cx="125px" cy="125px" r="20px" fill="skyblue" clip-path="url(#clipPath2)" /> + <circle cx="225px" cy="225px" r="20px" fill="skyblue" clip-path="url(#clipPath3)" /> +</svg> |