Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 7f923da

Browse files
committed
fixed test that did not make sense
1 parent 5fd6db5 commit 7f923da

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/web_ui/test/html/compositing/backdrop_filter_golden_test.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,10 @@ Future<void> testMain() async {
152152
);
153153
final Picture circles1 = _drawTestPictureWithCircles(region, 30, 30);
154154

155+
// current background color is light green, apply a light yellow colorFilter
155156
const ColorFilter colorFilter = ColorFilter.mode(
156-
Color(0xFF00FF00),
157-
BlendMode.srcIn
157+
Color(0xFFFFFFB1),
158+
BlendMode.modulate
158159
);
159160
builder.pushBackdropFilter(colorFilter);
160161
builder.addPicture(Offset.zero, circles1);

0 commit comments

Comments
 (0)