RESOLVED FIXED 76081
Add new CSS enum value to a switch() in CSSStyleSelector::applyProperty() to fix compile error
https://bugs.webkit.org/show_bug.cgi?id=76081
Summary Add new CSS enum value to a switch() in CSSStyleSelector::applyProperty() to ...
Dmitry Titov
Reported 2012-01-11 11:30:20 PST
This is a follow-up on http://trac.webkit.org/r104678 It added a new CSS property, CSSPropertyWebkitFontKerning and this breaks compile if WebKit is built with SVG disabled. The CSSStyleSelector::applyProperty() contains a big switch() with the following fragment at the end: #if ENABLE(SVG) default: // Try the SVG properties applySVGProperty(id, value); return; #endif I'm adding the CSSPropertyWebkitFontKerning into this switch() in a non-specific manner, since I need to fix the compile error on some Chromium bots. Adding mitz@ to alert and perhaps do a better fix later.
Attachments
Patch (1.36 KB, patch)
2012-01-11 11:33 PST, Dmitry Titov
levin: review+
Dmitry Titov
Comment 1 2012-01-11 11:33:09 PST
Dmitry Titov
Comment 2 2012-01-11 11:37:39 PST
Note You need to log in before you can comment on or make changes to this bug.