From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../svg/shapes/animatedPoints-non-animated.html | 51 ++++++++++++++ .../tests/svg/shapes/circle-01-ref.svg | 3 + .../web-platform/tests/svg/shapes/circle-01.svg | 9 +++ .../tests/svg/shapes/ellipse-01-ref.svg | 4 ++ .../web-platform/tests/svg/shapes/ellipse-01.svg | 15 +++++ .../tests/svg/shapes/ellipse-02-ref.svg | 4 ++ .../web-platform/tests/svg/shapes/ellipse-02.svg | 15 +++++ .../tests/svg/shapes/ellipse-03-ref.svg | 4 ++ .../web-platform/tests/svg/shapes/ellipse-03.svg | 15 +++++ .../tests/svg/shapes/ellipse-04-ref.svg | 3 + .../web-platform/tests/svg/shapes/ellipse-04.svg | 15 +++++ .../web-platform/tests/svg/shapes/ellipse-05.svg | 14 ++++ .../web-platform/tests/svg/shapes/ellipse-06.svg | 14 ++++ .../tests/svg/shapes/ellipse-07-ref.svg | 4 ++ .../web-platform/tests/svg/shapes/ellipse-07.svg | 15 +++++ .../web-platform/tests/svg/shapes/ellipse-08.svg | 15 +++++ .../web-platform/tests/svg/shapes/ellipse-09.svg | 11 +++ .../tests/svg/shapes/line-dasharray-ref.svg | 11 +++ .../tests/svg/shapes/line-dasharray.svg | 17 +++++ .../tests/svg/shapes/line-getPointAtLength.svg | 35 ++++++++++ .../tests/svg/shapes/line-pathLength.svg | 19 ++++++ .../web-platform/tests/svg/shapes/rect-01-ref.html | 2 + testing/web-platform/tests/svg/shapes/rect-01.svg | 9 +++ .../web-platform/tests/svg/shapes/rect-02-ref.html | 2 + testing/web-platform/tests/svg/shapes/rect-02.svg | 9 +++ .../web-platform/tests/svg/shapes/rect-03-ref.html | 2 + testing/web-platform/tests/svg/shapes/rect-03.svg | 9 +++ .../web-platform/tests/svg/shapes/rect-04-ref.html | 7 ++ testing/web-platform/tests/svg/shapes/rect-04.svg | 9 +++ .../web-platform/tests/svg/shapes/rect-05-ref.svg | 3 + testing/web-platform/tests/svg/shapes/rect-05.svg | 11 +++ .../svg/shapes/reftests/disabled-shapes-01.svg | 61 +++++++++++++++++ .../svg/shapes/reftests/pathlength-001-ref.svg | 18 +++++ .../tests/svg/shapes/reftests/pathlength-001.svg | 21 ++++++ .../svg/shapes/reftests/pathlength-002-ref.svg | 18 +++++ .../tests/svg/shapes/reftests/pathlength-002.svg | 21 ++++++ .../svg/shapes/reftests/pathlength-003-ref.svg | 40 +++++++++++ .../tests/svg/shapes/reftests/pathlength-003.svg | 43 ++++++++++++ .../reftests/polygon-with-filtered-marker.html | 10 +++ .../tests/svg/shapes/reftests/reference/empty.svg | 1 + .../tests/svg/shapes/rx-ry-not-inherited.svg | 30 +++++++++ .../shapes/scripted/disabled-shapes-not-hit.svg | 69 +++++++++++++++++++ .../tests/svg/shapes/scripted/shapes-clip-path.svg | 78 ++++++++++++++++++++++ .../scripted/stroke-dashes-hit-at-high-scale.svg | 27 ++++++++ 44 files changed, 793 insertions(+) create mode 100644 testing/web-platform/tests/svg/shapes/animatedPoints-non-animated.html create mode 100644 testing/web-platform/tests/svg/shapes/circle-01-ref.svg create mode 100644 testing/web-platform/tests/svg/shapes/circle-01.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-01-ref.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-01.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-02-ref.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-02.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-03-ref.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-03.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-04-ref.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-04.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-05.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-06.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-07-ref.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-07.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-08.svg create mode 100644 testing/web-platform/tests/svg/shapes/ellipse-09.svg create mode 100644 testing/web-platform/tests/svg/shapes/line-dasharray-ref.svg create mode 100644 testing/web-platform/tests/svg/shapes/line-dasharray.svg create mode 100644 testing/web-platform/tests/svg/shapes/line-getPointAtLength.svg create mode 100644 testing/web-platform/tests/svg/shapes/line-pathLength.svg create mode 100644 testing/web-platform/tests/svg/shapes/rect-01-ref.html create mode 100644 testing/web-platform/tests/svg/shapes/rect-01.svg create mode 100644 testing/web-platform/tests/svg/shapes/rect-02-ref.html create mode 100644 testing/web-platform/tests/svg/shapes/rect-02.svg create mode 100644 testing/web-platform/tests/svg/shapes/rect-03-ref.html create mode 100644 testing/web-platform/tests/svg/shapes/rect-03.svg create mode 100644 testing/web-platform/tests/svg/shapes/rect-04-ref.html create mode 100644 testing/web-platform/tests/svg/shapes/rect-04.svg create mode 100644 testing/web-platform/tests/svg/shapes/rect-05-ref.svg create mode 100644 testing/web-platform/tests/svg/shapes/rect-05.svg create mode 100644 testing/web-platform/tests/svg/shapes/reftests/disabled-shapes-01.svg create mode 100644 testing/web-platform/tests/svg/shapes/reftests/pathlength-001-ref.svg create mode 100644 testing/web-platform/tests/svg/shapes/reftests/pathlength-001.svg create mode 100644 testing/web-platform/tests/svg/shapes/reftests/pathlength-002-ref.svg create mode 100644 testing/web-platform/tests/svg/shapes/reftests/pathlength-002.svg create mode 100644 testing/web-platform/tests/svg/shapes/reftests/pathlength-003-ref.svg create mode 100644 testing/web-platform/tests/svg/shapes/reftests/pathlength-003.svg create mode 100644 testing/web-platform/tests/svg/shapes/reftests/polygon-with-filtered-marker.html create mode 100644 testing/web-platform/tests/svg/shapes/reftests/reference/empty.svg create mode 100644 testing/web-platform/tests/svg/shapes/rx-ry-not-inherited.svg create mode 100644 testing/web-platform/tests/svg/shapes/scripted/disabled-shapes-not-hit.svg create mode 100644 testing/web-platform/tests/svg/shapes/scripted/shapes-clip-path.svg create mode 100644 testing/web-platform/tests/svg/shapes/scripted/stroke-dashes-hit-at-high-scale.svg (limited to 'testing/web-platform/tests/svg/shapes') diff --git a/testing/web-platform/tests/svg/shapes/animatedPoints-non-animated.html b/testing/web-platform/tests/svg/shapes/animatedPoints-non-animated.html new file mode 100644 index 0000000000..5c17589086 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/animatedPoints-non-animated.html @@ -0,0 +1,51 @@ + + + + +animatedPoints non-animated + + + + + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/circle-01-ref.svg b/testing/web-platform/tests/svg/shapes/circle-01-ref.svg new file mode 100644 index 0000000000..1d62e8e2af --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/circle-01-ref.svg @@ -0,0 +1,3 @@ + + + diff --git a/testing/web-platform/tests/svg/shapes/circle-01.svg b/testing/web-platform/tests/svg/shapes/circle-01.svg new file mode 100644 index 0000000000..8eecd6621f --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/circle-01.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-01-ref.svg b/testing/web-platform/tests/svg/shapes/ellipse-01-ref.svg new file mode 100644 index 0000000000..c4ab1bd039 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-01-ref.svg @@ -0,0 +1,4 @@ + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-01.svg b/testing/web-platform/tests/svg/shapes/ellipse-01.svg new file mode 100644 index 0000000000..1b1124e4c5 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-01.svg @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-02-ref.svg b/testing/web-platform/tests/svg/shapes/ellipse-02-ref.svg new file mode 100644 index 0000000000..1a4b455d03 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-02-ref.svg @@ -0,0 +1,4 @@ + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-02.svg b/testing/web-platform/tests/svg/shapes/ellipse-02.svg new file mode 100644 index 0000000000..c4727b84b2 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-02.svg @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-03-ref.svg b/testing/web-platform/tests/svg/shapes/ellipse-03-ref.svg new file mode 100644 index 0000000000..15fae5e844 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-03-ref.svg @@ -0,0 +1,4 @@ + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-03.svg b/testing/web-platform/tests/svg/shapes/ellipse-03.svg new file mode 100644 index 0000000000..e0aacefd70 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-03.svg @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-04-ref.svg b/testing/web-platform/tests/svg/shapes/ellipse-04-ref.svg new file mode 100644 index 0000000000..1d62e8e2af --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-04-ref.svg @@ -0,0 +1,3 @@ + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-04.svg b/testing/web-platform/tests/svg/shapes/ellipse-04.svg new file mode 100644 index 0000000000..79e6d0674a --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-04.svg @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-05.svg b/testing/web-platform/tests/svg/shapes/ellipse-05.svg new file mode 100644 index 0000000000..e86f1052dd --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-05.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-06.svg b/testing/web-platform/tests/svg/shapes/ellipse-06.svg new file mode 100644 index 0000000000..80f36a9adc --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-06.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-07-ref.svg b/testing/web-platform/tests/svg/shapes/ellipse-07-ref.svg new file mode 100644 index 0000000000..bd84518021 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-07-ref.svg @@ -0,0 +1,4 @@ + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-07.svg b/testing/web-platform/tests/svg/shapes/ellipse-07.svg new file mode 100644 index 0000000000..396e5f3f62 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-07.svg @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-08.svg b/testing/web-platform/tests/svg/shapes/ellipse-08.svg new file mode 100644 index 0000000000..1ff393beb0 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-08.svg @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/ellipse-09.svg b/testing/web-platform/tests/svg/shapes/ellipse-09.svg new file mode 100644 index 0000000000..77e3f3fe70 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/ellipse-09.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/line-dasharray-ref.svg b/testing/web-platform/tests/svg/shapes/line-dasharray-ref.svg new file mode 100644 index 0000000000..5b1caaa8bc --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/line-dasharray-ref.svg @@ -0,0 +1,11 @@ + + + + + diff --git a/testing/web-platform/tests/svg/shapes/line-dasharray.svg b/testing/web-platform/tests/svg/shapes/line-dasharray.svg new file mode 100644 index 0000000000..3ac8b19b1c --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/line-dasharray.svg @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/line-getPointAtLength.svg b/testing/web-platform/tests/svg/shapes/line-getPointAtLength.svg new file mode 100644 index 0000000000..472a64480a --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/line-getPointAtLength.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/line-pathLength.svg b/testing/web-platform/tests/svg/shapes/line-pathLength.svg new file mode 100644 index 0000000000..c6802d70a1 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/line-pathLength.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/rect-01-ref.html b/testing/web-platform/tests/svg/shapes/rect-01-ref.html new file mode 100644 index 0000000000..5e851e37e5 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/rect-01-ref.html @@ -0,0 +1,2 @@ + +
diff --git a/testing/web-platform/tests/svg/shapes/rect-01.svg b/testing/web-platform/tests/svg/shapes/rect-01.svg new file mode 100644 index 0000000000..a580807cbe --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/rect-01.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/rect-02-ref.html b/testing/web-platform/tests/svg/shapes/rect-02-ref.html new file mode 100644 index 0000000000..b20895255e --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/rect-02-ref.html @@ -0,0 +1,2 @@ + +
diff --git a/testing/web-platform/tests/svg/shapes/rect-02.svg b/testing/web-platform/tests/svg/shapes/rect-02.svg new file mode 100644 index 0000000000..123203e97f --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/rect-02.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/rect-03-ref.html b/testing/web-platform/tests/svg/shapes/rect-03-ref.html new file mode 100644 index 0000000000..97abb41241 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/rect-03-ref.html @@ -0,0 +1,2 @@ + +
diff --git a/testing/web-platform/tests/svg/shapes/rect-03.svg b/testing/web-platform/tests/svg/shapes/rect-03.svg new file mode 100644 index 0000000000..f4b59c91b1 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/rect-03.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/rect-04-ref.html b/testing/web-platform/tests/svg/shapes/rect-04-ref.html new file mode 100644 index 0000000000..f47ba82cb3 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/rect-04-ref.html @@ -0,0 +1,7 @@ + + +
diff --git a/testing/web-platform/tests/svg/shapes/rect-04.svg b/testing/web-platform/tests/svg/shapes/rect-04.svg new file mode 100644 index 0000000000..37c4c9b2ab --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/rect-04.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/rect-05-ref.svg b/testing/web-platform/tests/svg/shapes/rect-05-ref.svg new file mode 100644 index 0000000000..1d62e8e2af --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/rect-05-ref.svg @@ -0,0 +1,3 @@ + + + diff --git a/testing/web-platform/tests/svg/shapes/rect-05.svg b/testing/web-platform/tests/svg/shapes/rect-05.svg new file mode 100644 index 0000000000..27d01efc64 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/rect-05.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/reftests/disabled-shapes-01.svg b/testing/web-platform/tests/svg/shapes/reftests/disabled-shapes-01.svg new file mode 100644 index 0000000000..49572fe71e --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/reftests/disabled-shapes-01.svg @@ -0,0 +1,61 @@ + + Disabled shapes are not rendered + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/reftests/pathlength-001-ref.svg b/testing/web-platform/tests/svg/shapes/reftests/pathlength-001-ref.svg new file mode 100644 index 0000000000..0ec9e0353a --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/reftests/pathlength-001-ref.svg @@ -0,0 +1,18 @@ + + + Test of 'pathLength' on shapes. + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/reftests/pathlength-001.svg b/testing/web-platform/tests/svg/shapes/reftests/pathlength-001.svg new file mode 100644 index 0000000000..cd60c05239 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/reftests/pathlength-001.svg @@ -0,0 +1,21 @@ + + + Test of 'pathLength' on shapes. + + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/reftests/pathlength-002-ref.svg b/testing/web-platform/tests/svg/shapes/reftests/pathlength-002-ref.svg new file mode 100644 index 0000000000..21ec28a244 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/reftests/pathlength-002-ref.svg @@ -0,0 +1,18 @@ + + + Test of 'pathLength' on shapes. + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/reftests/pathlength-002.svg b/testing/web-platform/tests/svg/shapes/reftests/pathlength-002.svg new file mode 100644 index 0000000000..bdae7e75f2 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/reftests/pathlength-002.svg @@ -0,0 +1,21 @@ + + + Test of 'pathLength' on shapes. + + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/reftests/pathlength-003-ref.svg b/testing/web-platform/tests/svg/shapes/reftests/pathlength-003-ref.svg new file mode 100644 index 0000000000..8d6f43f9d8 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/reftests/pathlength-003-ref.svg @@ -0,0 +1,40 @@ + + + Test of 'pathLength' on shapes. + + + + + + + + + + Some text on a circle! + Some text on a circle! + + + diff --git a/testing/web-platform/tests/svg/shapes/reftests/pathlength-003.svg b/testing/web-platform/tests/svg/shapes/reftests/pathlength-003.svg new file mode 100644 index 0000000000..506952f54b --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/reftests/pathlength-003.svg @@ -0,0 +1,43 @@ + + + Test of 'pathLength' on shapes. + + + + + + + + + + + + Some text on a circle! + Some text on a circle! + + + diff --git a/testing/web-platform/tests/svg/shapes/reftests/polygon-with-filtered-marker.html b/testing/web-platform/tests/svg/shapes/reftests/polygon-with-filtered-marker.html new file mode 100644 index 0000000000..def8adc685 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/reftests/polygon-with-filtered-marker.html @@ -0,0 +1,10 @@ + +Filtered <marker> with <clipPath> ancestor on <polygon> + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/reftests/reference/empty.svg b/testing/web-platform/tests/svg/shapes/reftests/reference/empty.svg new file mode 100644 index 0000000000..0c7be4e2da --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/reftests/reference/empty.svg @@ -0,0 +1 @@ + diff --git a/testing/web-platform/tests/svg/shapes/rx-ry-not-inherited.svg b/testing/web-platform/tests/svg/shapes/rx-ry-not-inherited.svg new file mode 100644 index 0000000000..ff943e8b5c --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/rx-ry-not-inherited.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/scripted/disabled-shapes-not-hit.svg b/testing/web-platform/tests/svg/shapes/scripted/disabled-shapes-not-hit.svg new file mode 100644 index 0000000000..21ea907878 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/scripted/disabled-shapes-not-hit.svg @@ -0,0 +1,69 @@ + + Disabled shapes are not rendered and cannot be hit + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/scripted/shapes-clip-path.svg b/testing/web-platform/tests/svg/shapes/scripted/shapes-clip-path.svg new file mode 100644 index 0000000000..a8277226a5 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/scripted/shapes-clip-path.svg @@ -0,0 +1,78 @@ + + Clipped shapes can be hit when rendered + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testing/web-platform/tests/svg/shapes/scripted/stroke-dashes-hit-at-high-scale.svg b/testing/web-platform/tests/svg/shapes/scripted/stroke-dashes-hit-at-high-scale.svg new file mode 100644 index 0000000000..b57a9e0aa7 --- /dev/null +++ b/testing/web-platform/tests/svg/shapes/scripted/stroke-dashes-hit-at-high-scale.svg @@ -0,0 +1,27 @@ + + Strokes w/dashes are properly hit-tested, even at large scale factors + + + + + + + + + -- cgit v1.2.3