Title: [292228] trunk/Source/WebCore
Revision
292228
Author
[email protected]
Date
2022-04-01 12:23:24 -0700 (Fri, 01 Apr 2022)

Log Message

(REGRESSION r291992) showRenderTree fails to print the name of the renderer when "(" is present
https://bugs.webkit.org/show_bug.cgi?id=238666

Reviewed by Antti Koivisto.

* rendering/RenderObject.cpp:
(WebCore::RenderObject::outputRenderObject const): with names like "RenderRubyBase (anonymous)" we print an address and not "RenderRubyBase"

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (292227 => 292228)


--- trunk/Source/WebCore/ChangeLog	2022-04-01 19:03:37 UTC (rev 292227)
+++ trunk/Source/WebCore/ChangeLog	2022-04-01 19:23:24 UTC (rev 292228)
@@ -1,5 +1,15 @@
 2022-04-01  Alan Bujtas  <[email protected]>
 
+        (REGRESSION r291992) showRenderTree fails to print the name of the renderer when "(" is present
+        https://bugs.webkit.org/show_bug.cgi?id=238666
+
+        Reviewed by Antti Koivisto.
+
+        * rendering/RenderObject.cpp:
+        (WebCore::RenderObject::outputRenderObject const): with names like "RenderRubyBase (anonymous)" we print an address and not "RenderRubyBase"  
+
+2022-04-01  Alan Bujtas  <[email protected]>
+
         [Ruby] Statically positioned out-of-flow block boxes are mispositioned
         https://bugs.webkit.org/show_bug.cgi?id=238653
 

Modified: trunk/Source/WebCore/rendering/RenderObject.cpp (292227 => 292228)


--- trunk/Source/WebCore/rendering/RenderObject.cpp	2022-04-01 19:03:37 UTC (rev 292227)
+++ trunk/Source/WebCore/rendering/RenderObject.cpp	2022-04-01 19:23:24 UTC (rev 292228)
@@ -1231,7 +1231,7 @@
     // FIXME: Renderer's name should not include property value listing.
     int pos = nameView.find('(');
     if (pos > 0)
-        stream << nameView.left(pos - 1).characters8();
+        stream << nameView.left(pos - 1);
     else
         stream << nameView;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to