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 8682ffb475f1cd4ae101da8ae936a16e9658952e..87d5c2c38b20ec71f8a6284da339f9ed2388116a 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/components/DOMPresentationUtils.js |
+++ b/third_party/WebKit/Source/devtools/front_end/components/DOMPresentationUtils.js |
@@ -224,6 +224,7 @@ WebInspector.DOMPresentationUtils.buildStackTracePreviewContents = function(targ |
element.style.display = "inline-block"; |
var shadowRoot = WebInspector.createShadowRootWithCoreStyles(element, "components/domUtils.css"); |
var contentElement = shadowRoot.createChild("table", "stack-preview-container"); |
+ contentElement.setAttribute("cellSpacing", "0"); |
/** |
* @param {!Array.<!ConsoleAgent.CallFrame>} stackTrace |
@@ -233,7 +234,6 @@ WebInspector.DOMPresentationUtils.buildStackTracePreviewContents = function(targ |
for (var stackFrame of stackTrace) { |
var row = createElement("tr"); |
row.createChild("td").textContent = WebInspector.beautifyFunctionName(stackFrame.functionName); |
- row.createChild("td").textContent = " @ "; |
row.createChild("td").appendChild(linkifier.linkifyConsoleCallFrame(target, stackFrame)); |
contentElement.appendChild(row); |
} |
@@ -249,7 +249,6 @@ WebInspector.DOMPresentationUtils.buildStackTracePreviewContents = function(targ |
var row = contentElement.createChild("tr"); |
row.createChild("td", "stack-preview-async-description").textContent = WebInspector.asyncStackTraceLabel(asyncStackTrace.description); |
row.createChild("td"); |
- row.createChild("td"); |
appendStackTrace(callFrames); |
asyncStackTrace = asyncStackTrace.asyncStackTrace; |
} |