We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7da2887 commit dc377a6Copy full SHA for dc377a6
css/filter-effects/crashtests/filter-primitive-crash.html
@@ -0,0 +1,17 @@
1
+<!doctype html>
2
+<title>
3
+ Having lots of filter primitives shouldn't crash.
4
+</title>
5
+<div style="filter:url(#test1)">test</div>
6
+<svg
7
+ width="768"
8
+ height="768"
9
+ viewBox="0 0 768 768"
10
+ xmlns="http://www.w3.org/2000/svg">
11
+ <filter id="test1">
12
+ <feMorphology operator="dilate" radius="1" />
13
+ </filter>
14
+</svg>
15
+<script>
16
+test1.innerHTML = test1.innerHTML.repeat(10000);
17
+</script>
0 commit comments