Title: [217084] trunk/Source/WebCore
Revision
217084
Author
[email protected]
Date
2017-05-18 18:54:49 -0700 (Thu, 18 May 2017)

Log Message

Add a newline after the URL in showLayerTree output.

Reviewed by Zalan Bujtas.

* rendering/RenderLayer.cpp:
(WebCore::showLayerTree):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (217083 => 217084)


--- trunk/Source/WebCore/ChangeLog	2017-05-19 01:44:56 UTC (rev 217083)
+++ trunk/Source/WebCore/ChangeLog	2017-05-19 01:54:49 UTC (rev 217084)
@@ -1,3 +1,12 @@
+2017-05-18  Simon Fraser  <[email protected]>
+
+        Add a newline after the URL in showLayerTree output.
+
+        Reviewed by Zalan Bujtas.
+
+        * rendering/RenderLayer.cpp:
+        (WebCore::showLayerTree):
+
 2017-05-18  Wenson Hsieh  <[email protected]>
 
         Attachment drag preview should not have the attachment outline

Modified: trunk/Source/WebCore/rendering/RenderLayer.cpp (217083 => 217084)


--- trunk/Source/WebCore/rendering/RenderLayer.cpp	2017-05-19 01:44:56 UTC (rev 217083)
+++ trunk/Source/WebCore/rendering/RenderLayer.cpp	2017-05-19 01:54:49 UTC (rev 217084)
@@ -7216,7 +7216,7 @@
         return;
 
     WTF::String output = externalRepresentation(&layer->renderer().frame(), WebCore::RenderAsTextShowAllLayers | WebCore::RenderAsTextShowLayerNesting | WebCore::RenderAsTextShowCompositedLayers | WebCore::RenderAsTextShowAddresses | WebCore::RenderAsTextShowIDAndClass | WebCore::RenderAsTextDontUpdateLayout | WebCore::RenderAsTextShowLayoutState | WebCore::RenderAsTextShowOverflow | WebCore::RenderAsTextShowSVGGeometry | WebCore::RenderAsTextShowLayerFragments);
-    fprintf(stderr, "%s\n", output.utf8().data());
+    fprintf(stderr, "\n%s\n", output.utf8().data());
 }
 
 void showLayerTree(const WebCore::RenderObject* renderer)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to