| Summary: | Web Inspector: Wrong border color of console messages when filters are enabled | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Nikita Vasilyev <nvasilyev> | ||||||||
| Component: | Web Inspector | Assignee: | Nikita Vasilyev <nvasilyev> | ||||||||
| Status: | RESOLVED FIXED | ||||||||||
| Severity: | Normal | CC: | commit-queue, graouts, joepeck, jonowells, mattbaker, nvasilyev, timothy, webkit-bug-importer | ||||||||
| Priority: | P2 | Keywords: | InRadar | ||||||||
| Version: | 528+ (Nightly build) | ||||||||||
| Hardware: | All | ||||||||||
| OS: | All | ||||||||||
| Attachments: |
|
||||||||||
Created attachment 255719 [details]
Patch
Comment on attachment 255719 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=255719&action=review > Source/WebInspectorUI/UserInterface/Views/LogContentView.css:53 > +.console-error-level.console-item:not(.filtered-out):not(.filtered-out-by-search), Could be :not(.filtered-out, .filtered-out-by-search) > Source/WebInspectorUI/UserInterface/Views/LogContentView.css:54 > +.console-error-level:not(.filtered-out):not(.filtered-out-by-search) + .console-item { Ditto. > Source/WebInspectorUI/UserInterface/Views/LogContentView.css:58 > +.console-warning-level.console-item:not(.filtered-out):not(.filtered-out-by-search), Ditto. > Source/WebInspectorUI/UserInterface/Views/LogContentView.css:59 > +.console-warning-level:not(.filtered-out):not(.filtered-out-by-search) + .console-item { Ditto. Created attachment 255721 [details]
Patch
Comment on attachment 255721 [details] Patch Clearing flags on attachment: 255721 Committed r186042: <http://trac.webkit.org/changeset/186042> All reviewed patches have been landed. Closing bug. |
Created attachment 255718 [details] [Animated GIF] Actual/expected Steps: 1. console.warn('a'); console.log('b'); console.warn('c'); console.error('d'); console.log('e'); console.error('f'); 2. Turn errors filter on.