Title: [282827] trunk/Source/WebCore
Revision
282827
Author
[email protected]
Date
2021-09-21 10:49:11 -0700 (Tue, 21 Sep 2021)

Log Message

[IFC][Integration] Removed unused AvoidanceReason::FlowTextHasSurrogatePair
https://bugs.webkit.org/show_bug.cgi?id=230559

Reviewed by Antti Koivisto.

* layout/integration/LayoutIntegrationCoverage.cpp:
(WebCore::LayoutIntegration::printReason):
* layout/integration/LayoutIntegrationCoverage.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (282826 => 282827)


--- trunk/Source/WebCore/ChangeLog	2021-09-21 17:25:23 UTC (rev 282826)
+++ trunk/Source/WebCore/ChangeLog	2021-09-21 17:49:11 UTC (rev 282827)
@@ -1,3 +1,14 @@
+2021-09-21  Alan Bujtas  <[email protected]>
+
+        [IFC][Integration] Removed unused AvoidanceReason::FlowTextHasSurrogatePair
+        https://bugs.webkit.org/show_bug.cgi?id=230559
+
+        Reviewed by Antti Koivisto.
+
+        * layout/integration/LayoutIntegrationCoverage.cpp:
+        (WebCore::LayoutIntegration::printReason):
+        * layout/integration/LayoutIntegrationCoverage.h:
+
 2021-09-21  Eric Hutchison  <[email protected]>
 
         Unreviewed, reverting r282768.

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp (282826 => 282827)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp	2021-09-21 17:25:23 UTC (rev 282826)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp	2021-09-21 17:49:11 UTC (rev 282827)
@@ -190,9 +190,6 @@
     case AvoidanceReason::FlowHasLineBoxContainGlyphs:
         stream << "-webkit-line-box-contain: glyphs";
         break;
-    case AvoidanceReason::FlowTextHasSurrogatePair:
-        stream << "surrogate pair";
-        break;
     case AvoidanceReason::MultiColumnFlowIsNotTopLevel:
         stream << "non top level column";
         break;

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.h (282826 => 282827)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.h	2021-09-21 17:25:23 UTC (rev 282826)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.h	2021-09-21 17:49:11 UTC (rev 282827)
@@ -83,7 +83,7 @@
     // Unused                                    = 1LLU  << 43,
     FlowHasHangingPunctuation                    = 1LLU  << 44,
     FlowHasLineBoxContainGlyphs                  = 1LLU  << 45,
-    FlowTextHasSurrogatePair                     = 1LLU  << 46,
+    // Unused                                    = 1LLU  << 46,
     MultiColumnFlowIsNotTopLevel                 = 1LLU  << 47,
     MultiColumnFlowHasColumnSpanner              = 1LLU  << 48,
     MultiColumnFlowVerticalAlign                 = 1LLU  << 49,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to