summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/devtools/front_end/console_counters
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/devtools/front_end/console_counters')
-rw-r--r--chromium/third_party/blink/renderer/devtools/front_end/console_counters/WarningErrorCounter.js2
-rw-r--r--chromium/third_party/blink/renderer/devtools/front_end/console_counters/errorWarningCounter.css4
2 files changed, 1 insertions, 5 deletions
diff --git a/chromium/third_party/blink/renderer/devtools/front_end/console_counters/WarningErrorCounter.js b/chromium/third_party/blink/renderer/devtools/front_end/console_counters/WarningErrorCounter.js
index b51e2ef3c7b..b17e8aede1b 100644
--- a/chromium/third_party/blink/renderer/devtools/front_end/console_counters/WarningErrorCounter.js
+++ b/chromium/third_party/blink/renderer/devtools/front_end/console_counters/WarningErrorCounter.js
@@ -39,7 +39,7 @@ ConsoleCounters.WarningErrorCounter = class {
*/
_createItem(shadowRoot, iconType) {
const item = createElementWithClass('span', 'counter-item');
- const icon = item.createChild('label', '', 'dt-icon-label');
+ const icon = item.createChild('span', '', 'dt-icon-label');
icon.type = iconType;
const text = icon.createChild('span');
shadowRoot.appendChild(item);
diff --git a/chromium/third_party/blink/renderer/devtools/front_end/console_counters/errorWarningCounter.css b/chromium/third_party/blink/renderer/devtools/front_end/console_counters/errorWarningCounter.css
index d6ad447d8fe..ee6de7a575d 100644
--- a/chromium/third_party/blink/renderer/devtools/front_end/console_counters/errorWarningCounter.css
+++ b/chromium/third_party/blink/renderer/devtools/front_end/console_counters/errorWarningCounter.css
@@ -18,10 +18,6 @@
margin-left: 6px;
}
-.counter-item label {
- cursor: inherit;
-}
-
.counter-item.counter-item-first {
margin-left: 0;
}