Changeset 258900 in webkit


Ignore:
Timestamp:
Mar 23, 2020 7:44:31 PM (4 years ago)
Author:
Devin Rousso
Message:

Web Inspector: REGRESSION(r257791): event breakpoint icon should be [E]
https://bugs.webkit.org/show_bug.cgi?id=209434

Reviewed by Timothy Hatcher.

  • UserInterface/Images/TypeIcons.svg:
  • UserInterface/Views/PathComponentIcons.css:

(.snapshot-list-icon .icon):
(@media (prefers-color-scheme: dark) .snapshot-list-icon .icon):
Drive-by: make a separate "HeapSnapshotList" target so that it won't be affected if "Events"

is ever changed.

Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r258898 r258900  
     12020-03-23  Devin Rousso  <drousso@apple.com>
     2
     3        Web Inspector: REGRESSION(r257791): event breakpoint icon should be [E]
     4        https://bugs.webkit.org/show_bug.cgi?id=209434
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Images/TypeIcons.svg:
     9
     10        * UserInterface/Views/PathComponentIcons.css:
     11        (.snapshot-list-icon .icon):
     12        (@media (prefers-color-scheme: dark) .snapshot-list-icon .icon):
     13        Drive-by: make a separate "HeapSnapshotList" target so that it won't be affected if "Events"
     14                  is ever changed.
     15
    1162020-03-23  Devin Rousso  <drousso@apple.com>
    217
  • trunk/Source/WebInspectorUI/UserInterface/Images/TypeIcons.svg

    r258039 r258900  
    321321    <g id="EventBreakpointInterval-dark" class="dark blue"><use href="#box"/><use href="#I"/></g>
    322322    <g id="EventBreakpointInterval-light" class="light blue"><use href="#box"/><use href="#I"/></g>
    323     <g id="EventBreakpointListener-dark" class="dark blue"><use href="#box"/><use href="#I"/></g>
    324     <g id="EventBreakpointListener-light" class="light blue"><use href="#box"/><use href="#I"/></g>
     323    <g id="EventBreakpointListener-dark" class="dark blue"><use href="#box"/><use href="#E"/></g>
     324    <g id="EventBreakpointListener-light" class="light blue"><use href="#box"/><use href="#E"/></g>
    325325    <g id="EventBreakpointTimeout-dark" class="dark blue"><use href="#box"/><use href="#T"/></g>
    326326    <g id="EventBreakpointTimeout-light" class="light blue"><use href="#box"/><use href="#T"/></g>
     
    338338    <g id="HeapSnapshotInstances-dark" class="dark yellow"><use href="#box"/><use href="#O"/></g>
    339339    <g id="HeapSnapshotInstances-light" class="light yellow"><use href="#box"/><use href="#O"/></g>
     340    <g id="HeapSnapshotList-dark" class="dark grey"><use href="#box"/><use href="#list"/></g>
     341    <g id="HeapSnapshotList-light" class="light grey"><use href="#box"/><use href="#list"/></g>
    340342    <g id="HeapSnapshotObjectGraph-dark" class="dark red"><use href="#box"/><use href="#braces"/></g>
    341343    <g id="HeapSnapshotObjectGraph-light" class="light red"><use href="#box"/><use href="#braces"/></g>
  • trunk/Source/WebInspectorUI/UserInterface/Views/PathComponentIcons.css

    r256774 r258900  
    101101
    102102.snapshot-list-icon .icon {
    103     content: url(../Images/TypeIcons.svg#Events-light);
     103    content: url(../Images/TypeIcons.svg#HeapSnapshotList-light);
    104104}
    105105
     
    194194
    195195    .snapshot-list-icon .icon {
    196         content: url(../Images/TypeIcons.svg#Events-dark);
     196        content: url(../Images/TypeIcons.svg#HeapSnapshotList-dark);
    197197    }
    198198
Note: See TracChangeset for help on using the changeset viewer.