> >> Source/WebCore/rendering/mathml/RenderMathMLRow.cpp:59 > >> + // FIXME: Only skip renderMo if it is stretchy. > > > > Bug? :-) > > Fred, I'm not familiar with this issue. If you open a bug for it and write a description I can add a link here. Sorry, I just realized that I didn't reply to this. I think the idea is that this loop consider the height of children that are not (embellished) operators in order to determine the stretch size. Then a second loop stretch the (embellished) operators to that size. The FIXME comment says that the first loop should only skip *stretchy* operators, so that e.g. <mo>+</mo> is taken into account in the determination of the stretch size. Probably, the second loop should skip these non-stretchy operators too. I'll open a bug for that later, but it seems to me that this should be fixed after the operator dictionary implementation anyway, so that we know exactly which operator is stretchy. See also bug 119043 for related improvements to this stretch code (size and alignment).
Created attachment 224735 [details] testcase In the attached testcase, the brace should stretch to cover the size of the large <mo>p</mo>.
Created attachment 224738 [details] Patch Here is a simple patch that applies on top of bug 119043.
Created attachment 224846 [details] Patch
Comment on attachment 224846 [details] Patch Asking review. The test will fail because this depends on bug 119043.
Created attachment 224954 [details] Patch + 119043 for testing
Comment on attachment 224846 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=224846&action=review > Source/WebCore/ChangeLog:8 > + The MathML code only takes into account non-mo children for the computation of the stretch size. Thus change includes non-stretchy mo in that computation. A new test is added into mathml/presentation/stretchy-depth-height.html. thus -> this > Source/WebCore/rendering/mathml/RenderMathMLRow.cpp:65 > + // We exclude stretchy operators from the computation of the stretch size. I would add the why you're skipping stretchy operators to the comment here as well.
Committed r164538: <http://trac.webkit.org/changeset/164538>