Skip to content

Commit c79063a

Browse files
committed
LibWeb: Convert blend test to use rectangle rather than circle
Using a circle isn't relevant to the outcome of the test and introduces anti-aliasing artifacts.
1 parent a00e7cb commit c79063a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
2+
<svg width="500" height="500" xmlns="http://www.w3.org/2000/svg">
33
<rect x="0" y="0" width="100" height="100" fill="green"/>
4-
<circle cx="50" cy="50" r="50" fill="black" />
4+
<rect x="25" y="25" width="50" height="50" fill="black" />
55
</svg>
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<!DOCTYPE html>
22
<link rel="match" href="../../expected/svg/blend-filter-ref.html" />
3-
<meta name="fuzzy" content="0-1;0-35">
43
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
54
<defs>
65
<filter id="blendFilter">
@@ -9,5 +8,5 @@
98
</filter>
109
</defs>
1110
<rect x="0" y="0" width="100" height="100" fill="blue" />
12-
<circle cx="50" cy="50" r="50" fill="red" filter="url(#blendFilter)" />
11+
<rect x="25" y="25" width="50" height="50" fill="red" filter="url(#blendFilter)" />
1312
</svg>

0 commit comments

Comments
 (0)