| Index: third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js b/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
|
| index 200b299495290906d7bf5477768efdbe4bea12d5..a7a5716923ee5fbe9690a75e5fa097b0ca4f0b4f 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
|
| @@ -200,7 +200,8 @@ Network.BlockedURLsPane = class extends UI.VBox {
|
| countElement.title = Common.UIString(
|
| count === 1 ? '%d request blocked by this pattern' : '%d requests blocked by this pattern', count);
|
|
|
| - var removeButton = element.createChild('div', 'remove-button');
|
| + var removeButton = UI.Icon.create('smallicon-cross', 'remove-icon');
|
| + element.appendChild(removeButton);
|
| removeButton.title = Common.UIString('Remove');
|
| removeButton.addEventListener('click', this._removeBlockedURL.bind(this, index), false);
|
|
|
|
|