From e68309144b28759874f9fe615d2c0094c1791841 Mon Sep 17 00:00:00 2001 From: Hendiadyoin1 Date: Sat, 1 Oct 2022 01:47:02 +0200 Subject: LibWeb: Don't scale by x, x when a scale x, y is provided as a transform --- Userland/Libraries/LibWeb/Painting/StackingContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Libraries') diff --git a/Userland/Libraries/LibWeb/Painting/StackingContext.cpp b/Userland/Libraries/LibWeb/Painting/StackingContext.cpp index 524cad258c..0ddb24201b 100644 --- a/Userland/Libraries/LibWeb/Painting/StackingContext.cpp +++ b/Userland/Libraries/LibWeb/Painting/StackingContext.cpp @@ -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; -- cgit v1.2.3