Title: [294979] trunk
Revision
294979
Author
hey...@apple.com
Date
2022-05-27 20:13:21 -0700 (Fri, 27 May 2022)

Log Message

Fix typo in ConcatenateCTM display list item serialization
https://bugs.webkit.org/show_bug.cgi?id=240935

Reviewed by Simon Fraser.

* LayoutTests/displaylists/extent-includes-transforms-expected.txt:
* LayoutTests/platform/mac-wk1/displaylists/extent-includes-transforms-expected.txt:
* Source/WebCore/platform/graphics/displaylists/DisplayListItems.cpp:
(WebCore::DisplayList::operator<<):

Canonical link: https://commits.webkit.org/251083@main

Modified Paths

Diff

Modified: trunk/LayoutTests/displaylists/extent-includes-transforms-expected.txt (294978 => 294979)


--- trunk/LayoutTests/displaylists/extent-includes-transforms-expected.txt	2022-05-28 02:40:34 UTC (rev 294978)
+++ trunk/LayoutTests/displaylists/extent-includes-transforms-expected.txt	2022-05-28 03:13:21 UTC (rev 294979)
@@ -2,7 +2,7 @@
 (translate
   (x 0.00)
   (y 22.00))
-(concatentate-ctm
+(concatenate-ctm
   (ctm {m=((0.87,0.50)(-0.50,0.87)) t=(81.70,-18.30)}))
 (save)
 (set-state

Modified: trunk/LayoutTests/platform/mac-wk1/displaylists/extent-includes-transforms-expected.txt (294978 => 294979)


--- trunk/LayoutTests/platform/mac-wk1/displaylists/extent-includes-transforms-expected.txt	2022-05-28 02:40:34 UTC (rev 294978)
+++ trunk/LayoutTests/platform/mac-wk1/displaylists/extent-includes-transforms-expected.txt	2022-05-28 03:13:21 UTC (rev 294979)
@@ -2,7 +2,7 @@
 (translate
   (x 0.00)
   (y 22.00))
-(concatentate-ctm
+(concatenate-ctm
   (ctm {m=((0.87,0.50)(-0.50,0.87)) t=(81.70,-18.30)}))
 (save
   (restore-index 5))

Modified: trunk/Source/WebCore/platform/graphics/displaylists/DisplayListItems.cpp (294978 => 294979)


--- trunk/Source/WebCore/platform/graphics/displaylists/DisplayListItems.cpp	2022-05-28 02:40:34 UTC (rev 294978)
+++ trunk/Source/WebCore/platform/graphics/displaylists/DisplayListItems.cpp	2022-05-28 03:13:21 UTC (rev 294979)
@@ -621,7 +621,7 @@
     case ItemType::Rotate: ts << "rotate"; break;
     case ItemType::Scale: ts << "scale"; break;
     case ItemType::SetCTM: ts << "set-ctm"; break;
-    case ItemType::ConcatenateCTM: ts << "concatentate-ctm"; break;
+    case ItemType::ConcatenateCTM: ts << "concatenate-ctm"; break;
     case ItemType::SetInlineFillColor: ts << "set-inline-fill-color"; break;
     case ItemType::SetInlineStrokeColor: ts << "set-inline-stroke-color"; break;
     case ItemType::SetStrokeThickness: ts << "set-stroke-thickness"; break;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to