[webkit-dev] Reading Open Type tables in WebKit?

2014-03-20 Thread Frédéric WANG
Hi all, I'm trying to implement the OpenType MATH table [1] in WebKit in order to improve the MathML support. I've already made some progress and split the work into several steps [2]. For people who are interested, here are some screenshots showing some rendering improvements:

Re: [webkit-dev] Reading Open Type tables in WebKit?

2014-03-20 Thread Chris Fleizach
Hi, In regards to the Mac platform we can use with CTFontCopyTable() with the MATH identifier. Can you email me a copy of the Microsoft document so we can look into it more. Thanks On Mar 19, 2014, at 11:43 PM, Frédéric WANG fred.w...@free.fr wrote: Hi all, I'm trying to implement the

Re: [webkit-dev] Reading Open Type tables in WebKit?

2014-03-20 Thread Frédéric WANG
Hi, Thanks. So to be more accurate, I think all what is needed is to implement FontPlatformData::openTypeTableon Mac to read the raw data: http://trac.webkit.org/browser/trunk/Source/WebCore/platform/graphics/FontPlatformData.h#L219 Indeed, it looks like CTFontCopyTable is what we want. Then