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 4f9e5fac6378a60b1fbb3943094af577f7bf932d..65c96e2da4beecded84524a4593ac05a24d1b818 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/components/DOMPresentationUtils.js |
+++ b/third_party/WebKit/Source/devtools/front_end/components/DOMPresentationUtils.js |
@@ -240,6 +240,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) { |
@@ -262,6 +263,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"); |