RESOLVED FIXED 164728
[CSS Parser] Support the font-synthesis property
https://bugs.webkit.org/show_bug.cgi?id=164728
Summary [CSS Parser] Support the font-synthesis property
Dave Hyatt
Reported 2016-11-14 13:28:05 PST
[CSS Parser] Support the font-synthesis property
Attachments
Patch (2.32 KB, patch)
2016-11-14 13:29 PST, Dave Hyatt
dino: review+
Dave Hyatt
Comment 1 2016-11-14 13:29:05 PST
Dean Jackson
Comment 2 2016-11-14 13:32:23 PST
Comment on attachment 294735 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=294735&action=review > Source/WebCore/css/parser/CSSPropertyParser.cpp:806 > + do { > + if (range.peek().id() == CSSValueWeight) > + weight = consumeIdent(range); > + else if (range.peek().id() == CSSValueStyle) > + style = consumeIdent(range); > + else > + return nullptr; > + } while (!range.atEnd()); What a weird property. font-synthesis: weight style weight weight weight; is fine.
Dave Hyatt
Comment 3 2016-11-14 13:40:33 PST
Landed in r208706.
Note You need to log in before you can comment on or make changes to this bug.