summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/svg/rendering
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
commitfbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 (patch)
tree4c1ccaf5486d4f2009f9a338a98a83e886e29c97 /testing/web-platform/tests/svg/rendering
parentReleasing progress-linux version 124.0.1-1~progress7.99u1. (diff)
downloadfirefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.tar.xz
firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/svg/rendering')
-rw-r--r--testing/web-platform/tests/svg/rendering/order/clip-path-filter-order-ref.svg6
-rw-r--r--testing/web-platform/tests/svg/rendering/order/clip-path-filter-order.svg26
-rw-r--r--testing/web-platform/tests/svg/rendering/order/z-index-ref.svg9
-rw-r--r--testing/web-platform/tests/svg/rendering/order/z-index.svg15
4 files changed, 0 insertions, 56 deletions
diff --git a/testing/web-platform/tests/svg/rendering/order/clip-path-filter-order-ref.svg b/testing/web-platform/tests/svg/rendering/order/clip-path-filter-order-ref.svg
deleted file mode 100644
index ea42d9eb02..0000000000
--- a/testing/web-platform/tests/svg/rendering/order/clip-path-filter-order-ref.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg"
- xmlns:h="http://www.w3.org/1999/xhtml"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- width="800" height="600" viewBox="0 0 800 600">
- <rect x="100" y="100" width="200" height="200" fill="green" />
-</svg>
diff --git a/testing/web-platform/tests/svg/rendering/order/clip-path-filter-order.svg b/testing/web-platform/tests/svg/rendering/order/clip-path-filter-order.svg
deleted file mode 100644
index 22cda52d68..0000000000
--- a/testing/web-platform/tests/svg/rendering/order/clip-path-filter-order.svg
+++ /dev/null
@@ -1,26 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg"
- xmlns:h="http://www.w3.org/1999/xhtml"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- width="800" height="600" viewBox="0 0 800 600">
- <metadata>
- <h:link rel="author" title="Philip Rogers" href="mailto:pdr@chromium.org"/>
- <h:link rel="help" href="https://www.w3.org/TR/SVG11/single-page.html#render-RenderingOrder"/>
- <h:link rel="match" href="clip-path-filter-order-ref.svg"/>
- <h:meta name="assert" content="Clip path should apply after filtering."/>
- </metadata>
-
- <defs>
- <filter id="redDropShadowFilter">
- <feOffset result="offsetOut" in="SourceGraphic" dx="10" dy="10" />
- <feColorMatrix result="colorMatrixOut" in="offsetOut" type="matrix"
- values="1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0" />
- <feGaussianBlur result="blurOut" in="colorMatrixOut" stdDeviation="15" />
- <feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
- </filter>
- <clipPath id="clipPath">
- <rect x="100" y="100" width="200" height="200" />
- </clipPath>
- </defs>
- <rect x="100" y="100" width="400" height="400" fill="green"
- filter="url(#redDropShadowFilter)" clip-path="url(#clipPath)" />
-</svg>
diff --git a/testing/web-platform/tests/svg/rendering/order/z-index-ref.svg b/testing/web-platform/tests/svg/rendering/order/z-index-ref.svg
deleted file mode 100644
index ff7f915668..0000000000
--- a/testing/web-platform/tests/svg/rendering/order/z-index-ref.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg"
- xmlns:h="http://www.w3.org/1999/xhtml"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- width="300" height="200" viewBox="0 0 300 200">
- <rect x="130" y="50" width="70" height="70" fill="green" />
- <rect x="100" y="80" width="70" height="70" fill="blue" />
- <rect x="74" y="35" width="70" height="70" fill="red" />
-
-</svg>
diff --git a/testing/web-platform/tests/svg/rendering/order/z-index.svg b/testing/web-platform/tests/svg/rendering/order/z-index.svg
deleted file mode 100644
index 786290a158..0000000000
--- a/testing/web-platform/tests/svg/rendering/order/z-index.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg"
- xmlns:h="http://www.w3.org/1999/xhtml"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- width="300" height="200" viewBox="0 0 300 200">
- <metadata>
- <h:link rel="help" href="https://svgwg.org/svg2-draft/render.html#ZIndexProperty"/>
- <h:link rel="match" href="z-index-ref.svg"/>
- <h:meta name="assert" content="The z-index property allows an element to be assigned to a stack level."/>
- </metadata>
-
- <rect x="74" y="35" width="70" height="70" fill="red" style="z-index: 1;" />
- <rect x="130" y="50" width="70" height="70" fill="green" />
- <rect x="100" y="80" width="70" height="70" fill="blue" />
-
-</svg>