RESOLVED FIXED 126842
Only skip stretchy operators when determining the stretch height
https://bugs.webkit.org/show_bug.cgi?id=126842
Summary Only skip stretchy operators when determining the stretch height
Frédéric Wang (:fredw)
Reported 2014-01-12 06:37:34 PST
> >> 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).
Attachments
testcase (233 bytes, text/html)
2014-02-20 02:05 PST, Frédéric Wang (:fredw)
no flags
Patch (4.98 KB, patch)
2014-02-20 02:40 PST, Frédéric Wang (:fredw)
no flags
Patch (5.00 KB, patch)
2014-02-21 02:17 PST, Frédéric Wang (:fredw)
cfleizach: review+
Patch + 119043 for testing (38.99 KB, patch)
2014-02-22 00:31 PST, Frédéric Wang (:fredw)
no flags
Frédéric Wang (:fredw)
Comment 1 2014-02-20 02:05:48 PST
Created attachment 224735 [details] testcase In the attached testcase, the brace should stretch to cover the size of the large <mo>p</mo>.
Frédéric Wang (:fredw)
Comment 2 2014-02-20 02:40:26 PST
Created attachment 224738 [details] Patch Here is a simple patch that applies on top of bug 119043.
Frédéric Wang (:fredw)
Comment 3 2014-02-21 02:17:04 PST
Frédéric Wang (:fredw)
Comment 4 2014-02-21 06:09:56 PST
Comment on attachment 224846 [details] Patch Asking review. The test will fail because this depends on bug 119043.
Frédéric Wang (:fredw)
Comment 5 2014-02-22 00:31:37 PST
Created attachment 224954 [details] Patch + 119043 for testing
chris fleizach
Comment 6 2014-02-22 01:25:09 PST
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.
Frédéric Wang (:fredw)
Comment 7 2014-02-22 02:16:03 PST
Note You need to log in before you can comment on or make changes to this bug.