| Index: third_party/WebKit/Source/devtools/front_end/sources/XHRBreakpointsSidebarPane.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/XHRBreakpointsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/XHRBreakpointsSidebarPane.js
|
| index f8dca87cb56cccff4d5b2abc3de5370d944a2861..b096de9a46bc32be2c7e16deed9773a2adec2709 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/XHRBreakpointsSidebarPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/XHRBreakpointsSidebarPane.js
|
| @@ -41,6 +41,7 @@ Sources.XHRBreakpointsSidebarPane = class extends Components.BreakpointsSidebarP
|
| inputElementContainer.textContent = Common.UIString('Break when URL contains:');
|
|
|
| var inputElement = inputElementContainer.createChild('span', 'editing');
|
| + inputElement.setAttribute('contenteditable', 'plaintext-only');
|
| inputElement.id = 'breakpoint-condition-input';
|
| this.addListElement(inputElementContainer, /** @type {?Element} */ (this.listElement.firstChild));
|
|
|
| @@ -142,6 +143,7 @@ Sources.XHRBreakpointsSidebarPane = class extends Components.BreakpointsSidebarP
|
| _labelClicked(url) {
|
| var element = this._breakpointElements.get(url) || null;
|
| var inputElement = createElementWithClass('span', 'breakpoint-condition editing');
|
| + inputElement.setAttribute('contenteditable', 'plaintext-only');
|
| inputElement.textContent = url;
|
| this.listElement.insertBefore(inputElement, element);
|
| element.classList.add('hidden');
|
|
|