Skip to content

Commit 5b72f44

Browse files
committed
[css-transforms-2] Fix scale application in matrix recomposition algorithm.
Similar to #2711. You really need to go through all the columns. See: https://bugzilla.mozilla.org/show_bug.cgi?id=1459403
1 parent cef834c commit 5b72f44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

css-transforms-2/Overview.bs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ if (skew[0])
10861086

10871087
// apply scale
10881088
for (i = 0; i < 3; i++)
1089-
for (j = 0; j < 3; j++)
1089+
for (j = 0; j < 4; j++)
10901090
matrix[i][j] *= scale[i]
10911091

10921092
return</pre>

0 commit comments

Comments
 (0)