Bug 174878
Summary: | prepareChangeLog gets confused when CSS file has C preprocessor directives | ||
---|---|---|---|
Product: | WebKit | Reporter: | Daniel Bates <dbates> |
Component: | Tools / Tests | Assignee: | Nobody <webkit-unassigned> |
Status: | NEW | ||
Severity: | Normal | CC: | ddkilzer, lforschler |
Priority: | P2 | ||
Version: | WebKit Local Build | ||
Hardware: | All | ||
OS: | All |
Daniel Bates
In attachment #316479 [details] (bug #141477) I added the following code to Source/WebCore/css/html.css:
#if defined(ENABLE_CSS_MARKER_PSEUDO_ELEMENT) && ENABLE_CSS_MARKER_PSEUDO_ELEMENT
::marker {
font-variant-numeric: tabular-nums;
}
#endif
When I ran prepare-ChangeLog the function list in the generated WebCore ChangeLog entry corresponding to this change was:
* css/html.css:
(#if defined(ENABLE_CSS_MARKER_PSEUDO_ELEMENT) && ENABLE_CSS_MARKER_PSEUDO_ELEMENT):
(#endif):
I expected to see:
* css/html.css:
(::marker):
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |