| Index: Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
|
| diff --git a/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js b/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
|
| index cd84290db3a7732bf4560efe58dc92b08c642384..2b35762929714f08b2f0e08664a23a1be2ced8bf 100644
|
| --- a/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
|
| +++ b/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
|
| @@ -163,22 +163,7 @@ WebInspector.DOMBreakpointsSidebarPane.prototype = {
|
| } else
|
| message = "Paused on a \"%s\" breakpoint set on %s.";
|
|
|
| - var element = createElement("span");
|
| - var formatters = {
|
| - s: function(substitution)
|
| - {
|
| - return substitution;
|
| - }
|
| - };
|
| - function append(a, b)
|
| - {
|
| - if (typeof b === "string")
|
| - b = createTextNode(b);
|
| - else if (b.shadowRoot)
|
| - b = createTextNode(b.shadowRoot.lastChild.textContent);
|
| - element.appendChild(b);
|
| - }
|
| - WebInspector.formatLocalized(message, substitutions, formatters, "", append);
|
| + var element = WebInspector.formatLocalized(message, substitutions, "");
|
|
|
| callback(element);
|
| },
|
|
|