Index: third_party/WebKit/Source/devtools/front_end/components/DOMPresentationUtils.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/components/DOMPresentationUtils.js b/third_party/WebKit/Source/devtools/front_end/components/DOMPresentationUtils.js |
index 2347ad521bfae62a6e034df302ef24ae7c486265..efbdc083220b036047f6e3621cf563c472aed8e7 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/components/DOMPresentationUtils.js |
+++ b/third_party/WebKit/Source/devtools/front_end/components/DOMPresentationUtils.js |
@@ -235,6 +235,7 @@ WebInspector.DOMPresentationUtils.buildStackTracePreviewContents = function(targ |
{ |
for (var stackFrame of stackTrace.callFrames) { |
var row = createElement("tr"); |
+ row.createChild("td").textContent = "\n"; |
row.createChild("td", "function-name").textContent = WebInspector.beautifyFunctionName(stackFrame.functionName); |
var link = linkifier.maybeLinkifyConsoleCallFrame(target, stackFrame); |
if (link) { |
@@ -257,6 +258,7 @@ WebInspector.DOMPresentationUtils.buildStackTracePreviewContents = function(targ |
continue; |
} |
var row = contentElement.createChild("tr"); |
+ row.createChild("td").textContent = "\n"; |
row.createChild("td", "stack-preview-async-description").textContent = WebInspector.asyncStackTraceLabel(asyncStackTrace.description); |
row.createChild("td"); |
row.createChild("td"); |