[Webkit-unassigned] [Bug 205196] New: Prefix CSS selectors with all applicable CSS groupings when generating a ChangeLog

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Dec 12 21:37:08 PST 2019


https://bugs.webkit.org/show_bug.cgi?id=205196

            Bug ID: 205196
           Summary: Prefix CSS selectors with all applicable CSS groupings
                    when generating a ChangeLog
           Product: WebKit
           Version: WebKit Local Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Tools / Tests
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: drousso at apple.com

When modifying a style inside a @media grouping, `prepare-ChangeLog` currently adds the media query as a separate line instead of prefixing the modified rule's selector.

e.g., modifying
```
    @media (prefers-color-scheme: dark) {
        body {
            ...
        }
        div {
            ...
        }
    }
```
would generate
```
    (@media (prefers-color-scheme: dark)):
    (body):
    (div):
```
instead of
```
    (@media (prefers-color-scheme: dark) body):
    (@media (prefers-color-scheme: dark) div):
```

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20191213/40e411b8/attachment.htm>


More information about the webkit-unassigned mailing list