LibWeb: Don't scale by x, x when a scale x, y is provided as a transform

This commit is contained in:
Hendiadyoin1 2022-10-01 01:47:02 +02:00 committed by Linus Groh
parent 691a7070f4
commit e68309144b

View file

@ -240,7 +240,7 @@ Gfx::FloatMatrix4x4 StackingContext::get_transformation_matrix(CSS::Transformati
0, 0, 0, 1);
if (count == 2)
return Gfx::FloatMatrix4x4(value(0), 0, 0, 0,
0, value(0), 0, 0,
0, value(1), 0, 0,
0, 0, 1, 0,
0, 0, 0, 1);
break;