Changeset 128837 in webkit


Ignore:
Timestamp:
Sep 17, 2012, 6:37:18 PM (13 years ago)
Author:
Dave Barton
Message:

Convert MathML to use flexboxes
https://bugs.webkit.org/show_bug.cgi?id=96843

Reviewed by Eric Seidel.

Source/WebCore:

Using the CSS Flexible Box Model simplifies MathML in many ways. Control over alignment, row vs.
column layout, and child layout order are all much easier. Complexities involving floats,
continuations, and most anonymous boxes are eliminated, as are their potential for crashes and
security vulnerabilities.

In a flexbox, column alignment is done with align-items or align-self, instead of text-align.
vertical-align and baselinePosition() are replaced by the firstLineBoxBaseline() virtual
function.

Tested by existing tests.

  • css/mathml.css:

(math):
(math[display="block"]):
(mo, mrow, mfenced, mfrac, msub, msup, msubsup, munder, mover, munderover, msqrt, mroot):
(math, mrow, mfenced, msqrt, mroot):
(msqrt > *):
(mo, mfrac, munder, mover, munderover):
(munder, mover, munderover):
(mfrac > *):
(mfrac[numalign="left"] > :first-child):
(mfrac[numalign="right"] > :first-child):
(mfrac[denomalign="left"] > :last-child):
(mfrac[denomalign="right"] > :last-child):
(msubsup > :last-child, mover > :last-child, munderover > :last-child):
(msub > * + *, msup > * + *, msubsup > * + *, munder > * + *, mover > * + *, munderover > * + *):
(mroot):
(mroot > * + *):
(mtable):

  • mathml/MathMLInlineContainerElement.cpp:

(WebCore::MathMLInlineContainerElement::createRenderer):

  • mathml/mathtags.in:


  • rendering/mathml/RenderMathMLBlock.cpp:

(WebCore::RenderMathMLBlock::RenderMathMLBlock):
(WebCore::RenderMathMLBlock::computePreferredLogicalWidths):
(WebCore::RenderMathMLBlock::baselinePosition):
(WebCore::RenderMathMLBlock::renderName):
(WebCore::RenderMathMLBlock::paint):
(WebCore::RenderMathMLTable::firstLineBoxBaseline):

  • rendering/mathml/RenderMathMLBlock.h:

(RenderMathMLBlock):
(RenderMathMLTable):
(WebCore::RenderMathMLTable::RenderMathMLTable):

  • Change RenderMathMLBlock's base class to RenderFlexibleBox, and its display to FLEX or INLINE_FLEX.
  • Add RenderMathMLTable for its firstLineBoxBaseline() function, like { vertical-align: middle }.


  • rendering/mathml/RenderMathMLFenced.cpp:

(WebCore::RenderMathMLFenced::createMathMLOperator):
(WebCore::RenderMathMLFenced::makeFences):

  • Use RenderMathMLRow::addChild as a more robust name for RenderBlock::addChild.

(WebCore::RenderMathMLFenced::addChild):

  • All inline children of a flexbox are treated as blocks automatically.


  • rendering/mathml/RenderMathMLFraction.cpp:

(WebCore::RenderMathMLFraction::fixChildStyle):
(WebCore::RenderMathMLFraction::updateFromElement):

  • numalign and denomalign attributes are now handled by mathml.css.

(WebCore::RenderMathMLFraction::addChild):
(WebCore::RenderMathMLFraction::layout):
(WebCore::RenderMathMLFraction::firstLineBoxBaseline):

  • rendering/mathml/RenderMathMLFraction.h:

(RenderMathMLFraction):

  • rendering/mathml/RenderMathMLOperator.cpp:

(WebCore::RenderMathMLOperator::updateFromElement):
(WebCore::RenderMathMLOperator::createStackableStyle):
(WebCore::RenderMathMLOperator::firstLineBoxBaseline):

  • rendering/mathml/RenderMathMLOperator.h:
  • rendering/mathml/RenderMathMLRow.cpp:

(WebCore::RenderMathMLRow::createAnonymousWithParentRenderer):

  • rendering/mathml/RenderMathMLSubSup.cpp:

(WebCore::RenderMathMLSubSup::RenderMathMLSubSup):
(WebCore::RenderMathMLSubSup::fixScriptsStyle):
(WebCore::RenderMathMLSubSup::addChild):
(WebCore::RenderMathMLSubSup::styleDidChange):
(WebCore::RenderMathMLSubSup::layout):

  • rendering/mathml/RenderMathMLSubSup.h:
    • Rename Sup to Super, to make it more readable vs. Sub.
    • Instead of vertical-align, msub and msup now use the m_scripts anonymous box like msubsup does.
    • Individual anonymous block wrappers are no longer needed around the superscript and subscript to lay them out in a column.
    • Handle msub and msup layout, and improve msubsup layout, by requiring a superscript's baseline to be at least (int) fontSize / 3 + 1 above the main baseline, and a subscript's baseline to be at least (int) fontSize / 5 + 1 below it.


  • rendering/mathml/RenderMathMLUnderOver.cpp:

(WebCore::RenderMathMLUnderOver::unembellishedOperator):
(WebCore::RenderMathMLUnderOver::firstLineBoxBaseline):

  • rendering/mathml/RenderMathMLUnderOver.h:

(RenderMathMLUnderOver):

  • RenderMathMLUnderOver no longer needs to use anonymous wrappers for column layout. Centering and child layout order (overscript first) are also handled by mathml.css.

LayoutTests:

  • mathml/EmptyMFracCrash-expected.txt:
  • mathml/EmptyMunderOverCrash-expected.txt:
  • mathml/empty-mroot-crash-expected.txt:
  • mathml/fenced-whitespace-separators-crash-expected.txt:
  • mathml/msub-anonymous-child-render-crash-expected.txt:
  • mathml/msubsup-no-grandchild-expected.txt:
  • mathml/msubsup-remove-children-expected.txt:
  • mathml/munderover-remove-children-expected.txt:


  • mathml/presentation/fenced.xhtml:
  • mathml/presentation/mo.xhtml:
  • mathml/presentation/row.xhtml:
  • mathml/xHeight.xhtml:
    • The <div>s are wrapped in <mtext> elements to make them valid in MathML, with the intended layout.


  • platform/mac/mathml/presentation/attributes-expected.png:
  • platform/mac/mathml/presentation/attributes-expected.txt:
  • platform/mac/mathml/presentation/fenced-expected.txt:
  • platform/mac/mathml/presentation/fenced-mi-expected.png:
  • platform/mac/mathml/presentation/fenced-mi-expected.txt:
  • platform/mac/mathml/presentation/fractions-expected.txt:
  • platform/mac/mathml/presentation/fractions-vertical-alignment-expected.txt:
  • platform/mac/mathml/presentation/mo-expected.png:
  • platform/mac/mathml/presentation/mo-expected.txt:
  • platform/mac/mathml/presentation/mo-stretch-expected.png:
  • platform/mac/mathml/presentation/mo-stretch-expected.txt:
  • platform/mac/mathml/presentation/mroot-pref-width-expected.txt:
  • platform/mac/mathml/presentation/over-expected.png:
  • platform/mac/mathml/presentation/over-expected.txt:
  • platform/mac/mathml/presentation/roots-expected.png:
  • platform/mac/mathml/presentation/roots-expected.txt:
  • platform/mac/mathml/presentation/row-alignment-expected.png:
  • platform/mac/mathml/presentation/row-alignment-expected.txt:
  • platform/mac/mathml/presentation/row-expected.png:
  • platform/mac/mathml/presentation/row-expected.txt:
  • platform/mac/mathml/presentation/style-expected.png:
  • platform/mac/mathml/presentation/style-expected.txt:
  • platform/mac/mathml/presentation/sub-expected.png:
  • platform/mac/mathml/presentation/sub-expected.txt:
  • platform/mac/mathml/presentation/subsup-expected.png:
  • platform/mac/mathml/presentation/subsup-expected.txt:
  • platform/mac/mathml/presentation/sup-expected.txt:
  • platform/mac/mathml/presentation/tables-expected.png:
  • platform/mac/mathml/presentation/tables-expected.txt:
  • platform/mac/mathml/presentation/tokenElements-expected.txt:
  • platform/mac/mathml/presentation/under-expected.txt:
  • platform/mac/mathml/presentation/underover-expected.png:
  • platform/mac/mathml/presentation/underover-expected.txt:
  • platform/mac/mathml/xHeight-expected.txt:
Location:
trunk
Files:
63 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r128833 r128837  
     12012-09-17  David Barton  <dbarton@mathscribe.com>
     2
     3        Convert MathML to use flexboxes
     4        https://bugs.webkit.org/show_bug.cgi?id=96843
     5
     6        Reviewed by Eric Seidel.
     7
     8        * mathml/EmptyMFracCrash-expected.txt:
     9        * mathml/EmptyMunderOverCrash-expected.txt:
     10        * mathml/empty-mroot-crash-expected.txt:
     11        * mathml/fenced-whitespace-separators-crash-expected.txt:
     12        * mathml/msub-anonymous-child-render-crash-expected.txt:
     13        * mathml/msubsup-no-grandchild-expected.txt:
     14        * mathml/msubsup-remove-children-expected.txt:
     15        * mathml/munderover-remove-children-expected.txt:
     16       
     17        * mathml/presentation/fenced.xhtml:
     18        * mathml/presentation/mo.xhtml:
     19        * mathml/presentation/row.xhtml:
     20        * mathml/xHeight.xhtml:
     21            - The <div>s are wrapped in <mtext> elements to make them valid in MathML, with the intended layout.
     22       
     23        * platform/mac/mathml/presentation/attributes-expected.png:
     24        * platform/mac/mathml/presentation/attributes-expected.txt:
     25        * platform/mac/mathml/presentation/fenced-expected.txt:
     26        * platform/mac/mathml/presentation/fenced-mi-expected.png:
     27        * platform/mac/mathml/presentation/fenced-mi-expected.txt:
     28        * platform/mac/mathml/presentation/fractions-expected.txt:
     29        * platform/mac/mathml/presentation/fractions-vertical-alignment-expected.txt:
     30        * platform/mac/mathml/presentation/mo-expected.png:
     31        * platform/mac/mathml/presentation/mo-expected.txt:
     32        * platform/mac/mathml/presentation/mo-stretch-expected.png:
     33        * platform/mac/mathml/presentation/mo-stretch-expected.txt:
     34        * platform/mac/mathml/presentation/mroot-pref-width-expected.txt:
     35        * platform/mac/mathml/presentation/over-expected.png:
     36        * platform/mac/mathml/presentation/over-expected.txt:
     37        * platform/mac/mathml/presentation/roots-expected.png:
     38        * platform/mac/mathml/presentation/roots-expected.txt:
     39        * platform/mac/mathml/presentation/row-alignment-expected.png:
     40        * platform/mac/mathml/presentation/row-alignment-expected.txt:
     41        * platform/mac/mathml/presentation/row-expected.png:
     42        * platform/mac/mathml/presentation/row-expected.txt:
     43        * platform/mac/mathml/presentation/style-expected.png:
     44        * platform/mac/mathml/presentation/style-expected.txt:
     45        * platform/mac/mathml/presentation/sub-expected.png:
     46        * platform/mac/mathml/presentation/sub-expected.txt:
     47        * platform/mac/mathml/presentation/subsup-expected.png:
     48        * platform/mac/mathml/presentation/subsup-expected.txt:
     49        * platform/mac/mathml/presentation/sup-expected.txt:
     50        * platform/mac/mathml/presentation/tables-expected.png:
     51        * platform/mac/mathml/presentation/tables-expected.txt:
     52        * platform/mac/mathml/presentation/tokenElements-expected.txt:
     53        * platform/mac/mathml/presentation/under-expected.txt:
     54        * platform/mac/mathml/presentation/underover-expected.png:
     55        * platform/mac/mathml/presentation/underover-expected.txt:
     56        * platform/mac/mathml/xHeight-expected.txt:
     57
    1582012-09-17  Shinya Kawanaka  <shinyak@chromium.org>
    259
  • trunk/LayoutTests/mathml/EmptyMFracCrash-expected.txt

    r65646 r128837  
    11This test passes if it does not crash.
     2
  • trunk/LayoutTests/mathml/EmptyMunderOverCrash-expected.txt

    r65646 r128837  
    11This test passes if it does not crash.
     2
  • trunk/LayoutTests/mathml/empty-mroot-crash-expected.txt

    r66403 r128837  
    11This test passes if it does not crash.
     2
  • trunk/LayoutTests/mathml/fenced-whitespace-separators-crash-expected.txt

    r68856 r128837  
    1 vi
     1v
     2i
     3
  • trunk/LayoutTests/mathml/msub-anonymous-child-render-crash-expected.txt

    r123650 r128837  
    33X
    443
    5 Y3X
     5Y
    663
    7 2Y32
     7X
     83
     92
     10Y
     113
     122
     13
  • trunk/LayoutTests/mathml/msubsup-no-grandchild-expected.txt

    r66403 r128837  
    11This test passes if it does not crash.
     2
  • trunk/LayoutTests/mathml/msubsup-remove-children-expected.txt

    r88104 r128837  
    11This test passes if the page has no other text.
     2
  • trunk/LayoutTests/mathml/munderover-remove-children-expected.txt

    r88730 r128837  
    11This test passes if this page has no other text.
     2
  • trunk/LayoutTests/mathml/presentation/fenced.xhtml

    r64967 r128837  
    44<style type="text/css">
    55mo {
    6    background-color: rgb(200,200,200);
     6    background-color: rgb(200,200,200);
     7}
     8.square {
     9    display: inline-block; vertical-align: middle; height: 48px; width: 48px; background-color: rgb(0,255,0)
    710}
    811</style>
     
    1114<p id='t1'>
    1215<math xmlns='http://www.w3.org/1998/Math/MathML'>
    13 <mfenced><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; vertical-align: middle;height: 48px; width: 48px; background-color: rgb(0,255,0)'/><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; vertical-align: middle;height: 48px; width: 48px; background-color: rgb(0,255,0)'/><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; vertical-align: middle;height: 48px; width: 48px; background-color: rgb(0,255,0)'/></mfenced>
     16<mfenced>
     17    <mtext><div xmlns='http://www.w3.org/1999/xhtml' class='square'/></mtext>
     18    <mtext><div xmlns='http://www.w3.org/1999/xhtml' class='square'/></mtext>
     19    <mtext><div xmlns='http://www.w3.org/1999/xhtml' class='square'/></mtext>
     20</mfenced>
    1421</math>
    1522</p>
  • trunk/LayoutTests/mathml/presentation/mo.xhtml

    r66708 r128837  
    7070<mo>{</mo>
    7171<mo>[</mo>
     72<mtext style='font-size: 50px'>
    7273<div style="display: inline-block; height: 50px; width: 50px; vertical-align: -33%; border: 1px solid black; margin-left: 2px; margin-right: 2px;"/>
     74</mtext>
    7375<mo>]</mo>
    7476<mo>}</mo>
  • trunk/LayoutTests/mathml/presentation/row.xhtml

    r107019 r128837  
    55mo {
    66   background-color: rgb(200,200,200);
     7}
     8.box {
     9   display: inline-block; vertical-align: -33%; height: 1em; width: 1em; background-color: rgb(0,255,0)
    710}
    811body {
     
    1922<math xmlns='http://www.w3.org/1998/Math/MathML'>
    2023<mrow>
    21 <mo>{</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 16px; width: 16px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>}</mo>
     24<mo>{</mo><mi>x</mi><mtext style='font-size: 16px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>}</mo>
    2225</mrow>
    2326</math>
    2427<math xmlns='http://www.w3.org/1998/Math/MathML'>
    25 <mrow><mo>[</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 16px; width: 16px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>]</mo></mrow>
     28<mrow><mo>[</mo><mi>x</mi><mtext style='font-size: 16px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>]</mo></mrow>
    2629</math>
    2730<math xmlns='http://www.w3.org/1998/Math/MathML'>
    28 <mrow><mo>(</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 16px; width: 16px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>)</mo></mrow>
     31<mrow><mo>(</mo><mi>x</mi><mtext style='font-size: 16px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>)</mo></mrow>
    2932</math>
    3033<math xmlns='http://www.w3.org/1998/Math/MathML'>
    31 <mrow><mo>|</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 16px; width: 16px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>|</mo></mrow>
     34<mrow><mo>|</mo><mi>x</mi><mtext style='font-size: 16px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>|</mo></mrow>
    3235</math>
    3336<math xmlns='http://www.w3.org/1998/Math/MathML'>
    34 <mrow><mo>&#x222b;</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 16px; width: 16px; vertical-align: -33%; background-color: rgb(0,255,0);'/></mrow>
     37<mrow><mo>&#x222b;</mo><mi>x</mi><mtext style='font-size: 16px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext></mrow>
    3538</math>
    3639</p>
    37 <p id='t1'>
     40<p id='t2'>
    384124px:
    3942<math xmlns='http://www.w3.org/1998/Math/MathML'>
    40 <mrow><mo>{</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 24px; width: 24px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>}</mo></mrow>
     43<mrow><mo>{</mo><mi>x</mi><mtext style='font-size: 24px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>}</mo></mrow>
    4144</math>
    4245<math xmlns='http://www.w3.org/1998/Math/MathML'>
    43 <mrow><mo>[</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 24px; width: 24px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>]</mo></mrow>
     46<mrow><mo>[</mo><mi>x</mi><mtext style='font-size: 24px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>]</mo></mrow>
    4447</math>
    4548<math xmlns='http://www.w3.org/1998/Math/MathML'>
    46 <mrow><mo>(</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 24px; width: 24px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>)</mo></mrow>
     49<mrow><mo>(</mo><mi>x</mi><mtext style='font-size: 24px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>)</mo></mrow>
    4750</math>
    4851<math xmlns='http://www.w3.org/1998/Math/MathML'>
    49 <mrow><mo>|</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 24px; width: 24px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>|</mo></mrow>
     52<mrow><mo>|</mo><mi>x</mi><mtext style='font-size: 24px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>|</mo></mrow>
    5053</math>
    5154<math xmlns='http://www.w3.org/1998/Math/MathML'>
    52 <mrow><mo>&#x222b;</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 24px; width: 24px; vertical-align: -33%; background-color: rgb(0,255,0)'/></mrow>
     55<mrow><mo>&#x222b;</mo><mi>x</mi><mtext style='font-size: 24px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext></mrow>
    5356</math>
    5457</p>
    55 <p id='t1'>
     58<p id='t3'>
    565932px:
    5760<math xmlns='http://www.w3.org/1998/Math/MathML'>
    58 <mrow><mo>{</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 32px; width: 32px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>}</mo></mrow>
     61<mrow><mo>{</mo><mi>x</mi><mtext style='font-size: 32px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>}</mo></mrow>
    5962</math>
    6063<math xmlns='http://www.w3.org/1998/Math/MathML'>
    61 <mrow><mo>[</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 32px; width: 32px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>]</mo></mrow>
     64<mrow><mo>[</mo><mi>x</mi><mtext style='font-size: 32px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>]</mo></mrow>
    6265</math>
    6366<math xmlns='http://www.w3.org/1998/Math/MathML'>
    64 <mrow><mo>(</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 32px; width: 32px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>)</mo></mrow>
     67<mrow><mo>(</mo><mi>x</mi><mtext style='font-size: 32px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>)</mo></mrow>
    6568</math>
    6669<math xmlns='http://www.w3.org/1998/Math/MathML'>
    67 <mrow><mo>|</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 32px; width: 32px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>|</mo></mrow>
     70<mrow><mo>|</mo><mi>x</mi><mtext style='font-size: 32px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>|</mo></mrow>
    6871</math>
    6972<math xmlns='http://www.w3.org/1998/Math/MathML'>
    70 <mrow><mo>&#x222b;</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 32px; width: 32px; vertical-align: -33%; background-color: rgb(0,255,0)'/></mrow>
     73<mrow><mo>&#x222b;</mo><mi>x</mi><mtext style='font-size: 32px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext></mrow>
    7174</math>
    7275</p>
    73 <p id='t1'>
     76<p id='t4'>
    747748px:
    7578<math xmlns='http://www.w3.org/1998/Math/MathML'>
    76 <mrow><mo>{</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 48px; width: 48px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>}</mo></mrow>
     79<mrow><mo>{</mo><mi>x</mi><mtext style='font-size: 48px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>}</mo></mrow>
    7780</math>
    7881<math xmlns='http://www.w3.org/1998/Math/MathML'>
    79 <mrow><mo>[</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 48px; width: 48px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>]</mo></mrow>
     82<mrow><mo>[</mo><mi>x</mi><mtext style='font-size: 48px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>]</mo></mrow>
    8083</math>
    8184<math xmlns='http://www.w3.org/1998/Math/MathML'>
    82 <mrow><mo>(</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 48px; width: 48px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>)</mo></mrow>
     85<mrow><mo>(</mo><mi>x</mi><mtext style='font-size: 48px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>)</mo></mrow>
    8386</math>
    8487<math xmlns='http://www.w3.org/1998/Math/MathML'>
    85 <mrow><mo>|</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 48px; width: 48px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>|</mo></mrow>
     88<mrow><mo>|</mo><mi>x</mi><mtext style='font-size: 48px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext><mo>|</mo></mrow>
    8689</math>
    8790<math xmlns='http://www.w3.org/1998/Math/MathML'>
    88 <mrow><mo>&#x222b;</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 48px; width: 48px; vertical-align: -33%; background-color: rgb(0,255,0)'/></mrow>
     91<mrow><mo>&#x222b;</mo><mi>x</mi><mtext style='font-size: 48px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext></mrow>
    8992</math>
    9093</p>
     
    9295120px:
    9396<math xmlns='http://www.w3.org/1998/Math/MathML'>
    94 <mrow><mo>{</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 120px; width: 48px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>}</mo></mrow>
     97<mrow><mo>{</mo><mi>x</mi><mtext style='font-size: 120px'><div xmlns='http://www.w3.org/1999/xhtml' class='box' style='width: 48px'/></mtext><mo>}</mo></mrow>
    9598</math>
    9699<math xmlns='http://www.w3.org/1998/Math/MathML'>
    97 <mrow><mo>[</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 120px; width: 48px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>]</mo></mrow>
     100<mrow><mo>[</mo><mi>x</mi><mtext style='font-size: 120px'><div xmlns='http://www.w3.org/1999/xhtml' class='box' style='width: 48px'/></mtext><mo>]</mo></mrow>
    98101</math>
    99102<math xmlns='http://www.w3.org/1998/Math/MathML'>
    100 <mrow><mo>(</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 120px; width: 48px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>)</mo></mrow>
     103<mrow><mo>(</mo><mi>x</mi><mtext style='font-size: 120px'><div xmlns='http://www.w3.org/1999/xhtml' class='box' style='width: 48px'/></mtext><mo>)</mo></mrow>
    101104</math>
    102105<math xmlns='http://www.w3.org/1998/Math/MathML'>
    103 <mrow><mo>|</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 120px; width: 48px; vertical-align: -33%; background-color: rgb(0,255,0)'/><mo>|</mo></mrow>
     106<mrow><mo>|</mo><mi>x</mi><mtext style='font-size: 120px'><div xmlns='http://www.w3.org/1999/xhtml' class='box' style='width: 48px'/></mtext><mo>|</mo></mrow>
    104107</math>
    105108<math xmlns='http://www.w3.org/1998/Math/MathML'>
    106 <mrow><mo>&#x222b;</mo><mi>x</mi><div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 120px; width: 48px; vertical-align: -33%; background-color: rgb(0,255,0)'/></mrow>
     109<mrow><mo>&#x222b;</mo><mi>x</mi><mtext style='font-size: 120px'><div xmlns='http://www.w3.org/1999/xhtml' class='box' style='width: 48px'/></mtext></mrow>
    107110</math>
    108111</p>
    109112<p id='t5'>
     11340px:
    110114<math xmlns='http://www.w3.org/1998/Math/MathML'>
    111115<mrow>
    112116<mo>(</mo><mi>x</mi><mo>,</mo>
    113 <div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 40px; width: 40px; vertical-align: -33%; background-color: rgb(0,255,0)'/>
     117<mtext style='font-size: 40px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext>
    114118<mo>,</mo>
    115 <div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 40px; width: 40px; vertical-align: -33%; background-color: rgb(0,255,0)'/>
     119<mtext style='font-size: 40px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext>
    116120<mo>,</mo>
    117 <div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 40px; width: 40px; vertical-align: -33%; background-color: rgb(0,255,0)'/>
     121<mtext style='font-size: 40px'><div xmlns='http://www.w3.org/1999/xhtml' class='box'/></mtext>
    118122<mo>)</mo>
    119123</mrow>
  • trunk/LayoutTests/mathml/xHeight.xhtml

    r70304 r128837  
    66    <math xmlns='http://www.w3.org/1998/Math/MathML'>
    77        <mi>x</mi>
    8         <div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 20px; width: 20px; vertical-align: middle; background-color: rgb(0,255,0)'/>
     8        <mtext>
     9            <div xmlns='http://www.w3.org/1999/xhtml' style='display: inline-block; height: 20px; width: 20px; vertical-align: middle; background-color: rgb(0,255,0)'/>
     10        </mtext>
    911    </math>
    1012</p>
  • trunk/LayoutTests/platform/mac/mathml/presentation/attributes-expected.txt

    r126160 r128837  
    99        RenderMathMLMath {math} at (432,0) size 59x23 [bgcolor=#FFA500] [padding: 0 1 0 1]
    1010          RenderMathMLOperator {mo} at (1,1) size 16x18 [color=#0000FF] [padding: 0 1 0 0]
    11             RenderMathMLBlock (inline-block) {mo} at (0,0) size 15x18
    12               RenderText {mo} at (0,-4) size 15x24
    13                 text run at (0,-4) width 15: "\x{2211}"
     11            RenderMathMLBlock (flex) {mo} at (0,0) size 15x18
     12              RenderBlock (anonymous) at (0,0) size 15x18
     13                RenderText {mo} at (0,-4) size 15x24
     14                  text run at (0,-4) width 15: "\x{2211}"
    1415          RenderMathMLFraction {mfrac} at (17,0) size 13x23 [color=#0000FF]
    15             RenderMathMLBlock (anonymous, block) at (0,0) size 13x9 [padding: 0 3 0 3]
    16               RenderInline {mi} at (0,0) size 7x24
    17                 RenderText {#text} at (3,-9) size 7x24
    18                   text run at (3,-9) width 7: "x"
    19             RenderMathMLBlock (anonymous, block) at (0,9) size 13x14 [padding: 2 3 0 3]
    20               RenderInline {mi} at (0,0) size 7x24
    21                 RenderText {#text} at (3,-7) size 7x24
    22                   text run at (3,-7) width 7: "y"
    23           RenderInline {mn} at (0,0) size 8x24 [color=#0000FF]
    24             RenderText {#text} at (30,-3) size 8x24
    25               text run at (30,-3) width 8: "1"
     16            RenderMathMLBlock (anonymous, flex) at (0,0) size 13x9 [padding: 0 3 0 3]
     17              RenderBlock {mi} at (3,0) size 7x9
     18                RenderText {#text} at (0,-9) size 7x24
     19                  text run at (0,-9) width 7: "x"
     20            RenderMathMLBlock (anonymous, flex) at (0,9) size 13x14 [padding: 2 3 0 3]
     21              RenderBlock {mi} at (3,2) size 7x12
     22                RenderText {#text} at (0,-9) size 7x24
     23                  text run at (0,-9) width 7: "y"
     24          RenderBlock {mn} at (30,3) size 8x12 [color=#0000FF]
     25            RenderText {#text} at (0,-6) size 8x24
     26              text run at (0,-6) width 8: "1"
    2627          RenderMathMLSquareRoot {msqrt} at (38,0) size 20x15 [color=#0000FF] [intrinsic padding: 3 0 0 12]
    2728            RenderMathMLRow (anonymous) at (12,3) size 8x12
    28               RenderInline {mn} at (0,0) size 8x24
     29              RenderBlock {mn} at (0,0) size 8x12
    2930                RenderText {#text} at (0,-6) size 8x24
    3031                  text run at (0,-6) width 8: "2"
     
    3334        RenderMathMLMath {math} at (495,0) size 15x23 [bgcolor=#FFA500] [padding: 0 1 0 1]
    3435          RenderMathMLFraction {mfrac} at (1,0) size 13x23 [color=#0000FF]
    35             RenderMathMLBlock (anonymous, block) at (0,0) size 13x9 [padding: 0 3 0 3]
    36               RenderInline {mi} at (0,0) size 7x24
    37                 RenderText {#text} at (3,-9) size 7x24
    38                   text run at (3,-9) width 7: "x"
    39             RenderMathMLBlock (anonymous, block) at (0,9) size 13x14 [padding: 2 3 0 3]
    40               RenderInline {mi} at (0,0) size 7x24
    41                 RenderText {#text} at (3,-7) size 7x24
    42                   text run at (3,-7) width 7: "y"
     36            RenderMathMLBlock (anonymous, flex) at (0,0) size 13x9 [padding: 0 3 0 3]
     37              RenderBlock {mi} at (3,0) size 7x9
     38                RenderText {#text} at (0,-9) size 7x24
     39                  text run at (0,-9) width 7: "x"
     40            RenderMathMLBlock (anonymous, flex) at (0,9) size 13x14 [padding: 2 3 0 3]
     41              RenderBlock {mi} at (3,2) size 7x12
     42                RenderText {#text} at (0,-9) size 7x24
     43                  text run at (0,-9) width 7: "y"
    4344        RenderText {#text} at (0,0) size 0x0
    4445      RenderBlock {p} at (0,39) size 784x19
     
    4647          text run at (0,1) width 348: "following elements should appear with increasing size: "
    4748        RenderMathMLMath {math} at (348,0) size 39x16 [padding: 0 1 0 1]
    48           RenderInline {mi} at (0,0) size 5x18
    49             RenderText {#text} at (1,2) size 5x18
    50               text run at (1,2) width 5: "x"
    51           RenderInline {mi} at (0,0) size 7x24
    52             RenderText {#text} at (6,-2) size 7x24
    53               text run at (6,-2) width 7: "x"
    54           RenderInline {mi} at (0,0) size 11x36
    55             RenderText {#text} at (13,-10) size 11x36
    56               text run at (13,-10) width 11: "x"
    57           RenderInline {mi} at (0,0) size 14x49
    58             RenderText {#text} at (24,-19) size 14x49
    59               text run at (24,-19) width 14: "x"
     49          RenderBlock {mi} at (1,9) size 5x7
     50            RenderText {#text} at (0,-7) size 5x18
     51              text run at (0,-7) width 5: "x"
     52          RenderBlock {mi} at (6,7) size 7x9
     53            RenderText {#text} at (0,-9) size 7x24
     54              text run at (0,-9) width 7: "x"
     55          RenderBlock {mi} at (13,4) size 11x12
     56            RenderText {#text} at (0,-14) size 11x36
     57              text run at (0,-14) width 11: "x"
     58          RenderBlock {mi} at (24,0) size 14x16
     59            RenderText {#text} at (0,-19) size 14x49
     60              text run at (0,-19) width 14: "x"
    6061        RenderText {#text} at (0,0) size 0x0
    6162      RenderBlock {p} at (0,74) size 784x18
     
    6364          text run at (0,0) width 86: "font variants: "
    6465        RenderMathMLMath {math} at (86,2) size 47x13 [padding: 0 1 0 1]
    65           RenderInline {mi} at (0,0) size 12x24
    66             RenderText {#text} at (1,-5) size 12x24
    67               text run at (1,-5) width 12: "A"
    68           RenderInline {mi} at (0,0) size 12x24
    69             RenderText {#text} at (13,-5) size 12x24
    70               text run at (13,-5) width 12: "A"
    71           RenderInline {mi} at (0,0) size 10x24
    72             RenderText {#text} at (25,-5) size 10x24
    73               text run at (25,-5) width 10: "A"
    74           RenderInline {mi} at (0,0) size 11x24
    75             RenderText {#text} at (35,-5) size 11x24
    76               text run at (35,-5) width 11: "A"
     66          RenderBlock {mi} at (1,1) size 12x12
     67            RenderText {#text} at (0,-6) size 12x24
     68              text run at (0,-6) width 12: "A"
     69          RenderBlock {mi} at (13,0) size 12x13
     70            RenderText {#text} at (0,-5) size 12x24
     71              text run at (0,-5) width 12: "A"
     72          RenderBlock {mi} at (25,1) size 10x12
     73            RenderText {#text} at (0,-6) size 10x24
     74              text run at (0,-6) width 10: "A"
     75          RenderBlock {mi} at (35,1) size 11x12
     76            RenderText {#text} at (0,-6) size 11x24
     77              text run at (0,-6) width 11: "A"
    7778        RenderText {#text} at (0,0) size 0x0
    7879      RenderBlock {p} at (0,108) size 784x26
     
    8081          text run at (0,8) width 152: "test font style attributes: "
    8182        RenderMathMLMath {math} at (152,0) size 58x23 [padding: 0 1 0 1]
    82           RenderInline {mtext} at (0,0) size 23x49
    83             RenderText {#text} at (1,-12) size 23x49
    84               text run at (1,-12) width 23: "A"
    85           RenderInline {mtext} at (0,0) size 11x18
    86             RenderText {#text} at (24,8) size 11x18
    87               text run at (24,8) width 11: "A"
    88           RenderInline {mtext} at (0,0) size 10x24
    89             RenderText {#text} at (35,5) size 10x24
    90               text run at (35,5) width 10: "A"
    91           RenderInline {mtext} at (0,0) size 12x24
    92             RenderText {#text} at (45,5) size 12x24
    93               text run at (45,5) width 12: "A"
     83          RenderBlock {mtext} at (1,0) size 23x23
     84            RenderText {#text} at (0,-12) size 23x49
     85              text run at (0,-12) width 23: "A"
     86          RenderBlock {mtext} at (24,10) size 11x13
     87            RenderText {#text} at (0,-2) size 11x18
     88              text run at (0,-2) width 11: "A"
     89          RenderBlock {mtext} at (35,11) size 10x12
     90            RenderText {#text} at (0,-6) size 10x24
     91              text run at (0,-6) width 10: "A"
     92          RenderBlock {mtext} at (45,10) size 12x13
     93            RenderText {#text} at (0,-5) size 12x24
     94              text run at (0,-5) width 12: "A"
    9495        RenderText {#text} at (0,0) size 0x0
    9596      RenderBlock {p} at (0,150) size 784x27
     
    9899            text run at (0,0) width 226: "following element should be inline: "
    99100          RenderMathMLMath {math} at (226,6) size 9x9 [padding: 0 1 0 1]
    100             RenderInline {mi} at (0,0) size 7x24
    101               RenderText {#text} at (1,-9) size 7x24
    102                 text run at (1,-9) width 7: "x"
     101            RenderBlock {mi} at (1,0) size 7x9
     102              RenderText {#text} at (0,-9) size 7x24
     103                text run at (0,-9) width 7: "x"
    103104          RenderText {#text} at (235,0) size 234x18
    104105            text run at (235,0) width 234: ", and this one centered on a new line:"
    105106        RenderMathMLMath {math} at (0,18) size 784x9 [padding: 0 1 0 1]
    106           RenderInline {mi} at (0,0) size 8x24
    107             RenderText {#text} at (388,-9) size 8x24
    108               text run at (388,-9) width 8: "x"
     107          RenderBlock {mi} at (388,0) size 7x9
     108            RenderText {#text} at (0,-9) size 7x24
     109              text run at (0,-9) width 7: "x"
  • trunk/LayoutTests/platform/mac/mathml/presentation/fenced-expected.txt

    r124512 r128837  
    88          RenderMathMLFenced {mfenced} at (1,0) size 168x61 [padding: 0 1 0 1]
    99            RenderMathMLOperator {mfenced} at (1,0) size 6x61 [padding: 0 1 0 0]
    10             RenderBlock {div} at (7,6) size 48x48 [bgcolor=#00FF00]
     10            RenderBlock {mtext} at (7,6) size 48x48
     11              RenderBlock {div} at (0,0) size 48x48 [bgcolor=#00FF00]
    1112            RenderMathMLOperator {mfenced} at (55,31) size 5x5 [padding: 0 1 0 0]
    12               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 4x5
    13                 RenderText {mfenced} at (0,-15) size 4x24
    14                   text run at (0,-15) width 4: ","
    15             RenderBlock {div} at (60,6) size 48x48 [bgcolor=#00FF00]
     13              RenderMathMLBlock (flex) {mfenced} at (0,0) size 4x5
     14                RenderBlock (anonymous) at (0,0) size 4x5
     15                  RenderText {mfenced} at (0,-15) size 4x24
     16                    text run at (0,-15) width 4: ","
     17            RenderBlock {mtext} at (60,6) size 48x48
     18              RenderBlock {div} at (0,0) size 48x48 [bgcolor=#00FF00]
    1619            RenderMathMLOperator {mfenced} at (108,31) size 5x5 [padding: 0 1 0 0]
    17               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 4x5
    18                 RenderText {mfenced} at (0,-15) size 4x24
    19                   text run at (0,-15) width 4: ","
    20             RenderBlock {div} at (113,6) size 48x48 [bgcolor=#00FF00]
     20              RenderMathMLBlock (flex) {mfenced} at (0,0) size 4x5
     21                RenderBlock (anonymous) at (0,0) size 4x5
     22                  RenderText {mfenced} at (0,-15) size 4x24
     23                    text run at (0,-15) width 4: ","
     24            RenderBlock {mtext} at (113,6) size 48x48
     25              RenderBlock {div} at (0,0) size 48x48 [bgcolor=#00FF00]
    2126            RenderMathMLOperator {mfenced} at (161,0) size 6x61 [padding: 0 1 0 0]
    2227        RenderText {#text} at (0,0) size 0x0
    2328layer at (10,16) size 5x10 scrollHeight 18
    24   RenderMathMLBlock (block) {mfenced} at (0,0) size 5x10
     29  RenderMathMLBlock (flex) {mfenced} at (0,0) size 5x10
     30    RenderBlock (anonymous) at (0,0) size 5x10
    2531layer at (10,26) size 5x10 scrollHeight 17
    26   RenderMathMLBlock (block) {mfenced} at (0,10) size 5x10
    27     RenderText {mfenced} at (0,-4) size 5x21
    28       text run at (0,-4) width 5: "\x{239C}"
     32  RenderMathMLBlock (flex) {mfenced} at (0,10) size 5x10
     33    RenderBlock (anonymous) at (0,0) size 5x10
     34      RenderText {mfenced} at (0,-4) size 5x21
     35        text run at (0,-4) width 5: "\x{239C}"
    2936layer at (10,36) size 5x10 scrollHeight 17
    30   RenderMathMLBlock (block) {mfenced} at (0,20) size 5x10
    31     RenderText {mfenced} at (0,-4) size 5x21
    32       text run at (0,-4) width 5: "\x{239C}"
     37  RenderMathMLBlock (flex) {mfenced} at (0,20) size 5x10
     38    RenderBlock (anonymous) at (0,0) size 5x10
     39      RenderText {mfenced} at (0,-4) size 5x21
     40        text run at (0,-4) width 5: "\x{239C}"
    3341layer at (10,46) size 5x10 scrollHeight 17
    34   RenderMathMLBlock (block) {mfenced} at (0,30) size 5x10
    35     RenderText {mfenced} at (0,-4) size 5x21
    36       text run at (0,-4) width 5: "\x{239C}"
     42  RenderMathMLBlock (flex) {mfenced} at (0,30) size 5x10
     43    RenderBlock (anonymous) at (0,0) size 5x10
     44      RenderText {mfenced} at (0,-4) size 5x21
     45        text run at (0,-4) width 5: "\x{239C}"
    3746layer at (10,56) size 5x7 scrollHeight 17
    38   RenderMathMLBlock (block) {mfenced} at (0,40) size 5x7
    39     RenderText {mfenced} at (0,-4) size 5x21
    40       text run at (0,-4) width 5: "\x{239C}"
     47  RenderMathMLBlock (flex) {mfenced} at (0,40) size 5x7
     48    RenderBlock (anonymous) at (0,0) size 5x7
     49      RenderText {mfenced} at (0,-4) size 5x21
     50        text run at (0,-4) width 5: "\x{239C}"
    4151layer at (10,63) size 5x14 scrollHeight 17
    42   RenderMathMLBlock (block) {mfenced} at (0,47) size 5x14
     52  RenderMathMLBlock (flex) {mfenced} at (0,47) size 5x14
     53    RenderBlock (anonymous) at (0,0) size 5x14
    4354layer at (170,16) size 5x10 scrollHeight 18
    44   RenderMathMLBlock (block) {mfenced} at (0,0) size 5x10
     55  RenderMathMLBlock (flex) {mfenced} at (0,0) size 5x10
     56    RenderBlock (anonymous) at (0,0) size 5x10
    4557layer at (170,26) size 5x10 scrollHeight 17
    46   RenderMathMLBlock (block) {mfenced} at (0,10) size 5x10
    47     RenderText {mfenced} at (0,-4) size 5x21
    48       text run at (0,-4) width 5: "\x{239F}"
     58  RenderMathMLBlock (flex) {mfenced} at (0,10) size 5x10
     59    RenderBlock (anonymous) at (0,0) size 5x10
     60      RenderText {mfenced} at (0,-4) size 5x21
     61        text run at (0,-4) width 5: "\x{239F}"
    4962layer at (170,36) size 5x10 scrollHeight 17
    50   RenderMathMLBlock (block) {mfenced} at (0,20) size 5x10
    51     RenderText {mfenced} at (0,-4) size 5x21
    52       text run at (0,-4) width 5: "\x{239F}"
     63  RenderMathMLBlock (flex) {mfenced} at (0,20) size 5x10
     64    RenderBlock (anonymous) at (0,0) size 5x10
     65      RenderText {mfenced} at (0,-4) size 5x21
     66        text run at (0,-4) width 5: "\x{239F}"
    5367layer at (170,46) size 5x10 scrollHeight 17
    54   RenderMathMLBlock (block) {mfenced} at (0,30) size 5x10
    55     RenderText {mfenced} at (0,-4) size 5x21
    56       text run at (0,-4) width 5: "\x{239F}"
     68  RenderMathMLBlock (flex) {mfenced} at (0,30) size 5x10
     69    RenderBlock (anonymous) at (0,0) size 5x10
     70      RenderText {mfenced} at (0,-4) size 5x21
     71        text run at (0,-4) width 5: "\x{239F}"
    5772layer at (170,56) size 5x7 scrollHeight 17
    58   RenderMathMLBlock (block) {mfenced} at (0,40) size 5x7
    59     RenderText {mfenced} at (0,-4) size 5x21
    60       text run at (0,-4) width 5: "\x{239F}"
     73  RenderMathMLBlock (flex) {mfenced} at (0,40) size 5x7
     74    RenderBlock (anonymous) at (0,0) size 5x7
     75      RenderText {mfenced} at (0,-4) size 5x21
     76        text run at (0,-4) width 5: "\x{239F}"
    6177layer at (170,63) size 5x14 scrollHeight 17
    62   RenderMathMLBlock (block) {mfenced} at (0,47) size 5x14
     78  RenderMathMLBlock (flex) {mfenced} at (0,47) size 5x14
     79    RenderBlock (anonymous) at (0,0) size 5x14
    6380layer at (10,17) size 5x15 backgroundClip at (10,16) size 5x10 clip at (10,16) size 5x10 outlineClip at (10,16) size 5x10
    6481  RenderBlock (relative positioned) {mfenced} at (0,0) size 5x15
  • trunk/LayoutTests/platform/mac/mathml/presentation/fenced-mi-expected.txt

    r126160 r128837  
    55    RenderBody {body} at (8,16) size 784x120
    66      RenderBlock {p} at (0,0) size 784x18
    7         RenderMathMLMath {math} at (0,1) size 48x17 [padding: 0 1 0 1]
    8           RenderMathMLFenced {mfenced} at (1,0) size 46x17 [padding: 0 1 0 1]
    9             RenderMathMLOperator {mfenced} at (1,0) size 7x17 [padding: 0 1 0 0]
    10               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 6x17
    11                 RenderText {mfenced} at (0,-7) size 6x29
    12                   text run at (0,-7) width 6: "("
    13             RenderInline {mi} at (0,0) size 7x24
    14               RenderText {#text} at (8,-4) size 7x24
    15                 text run at (8,-4) width 7: "x"
    16             RenderMathMLOperator {mfenced} at (15,11) size 5x5 [padding: 0 1 0 0]
    17               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 4x5
    18                 RenderText {mfenced} at (0,-15) size 4x24
    19                   text run at (0,-15) width 4: ","
    20             RenderInline {mi} at (0,0) size 7x24
    21               RenderText {#text} at (20,-4) size 7x24
    22                 text run at (20,-4) width 7: "y"
    23             RenderMathMLOperator {mfenced} at (27,11) size 5x5 [padding: 0 1 0 0]
    24               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 4x5
    25                 RenderText {mfenced} at (0,-15) size 4x24
    26                   text run at (0,-15) width 4: ","
    27             RenderInline {mi} at (0,0) size 6x24
    28               RenderText {#text} at (32,-4) size 6x24
    29                 text run at (32,-4) width 6: "z"
    30             RenderMathMLOperator {mfenced} at (38,0) size 7x17 [padding: 0 1 0 0]
    31               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 6x17
    32                 RenderText {mfenced} at (0,-7) size 6x29
    33                   text run at (0,-7) width 6: ")"
     7        RenderMathMLMath {math} at (0,3) size 46x15 [padding: 0 1 0 1]
     8          RenderMathMLFenced {mfenced} at (1,0) size 44x15 [padding: 0 1 0 1]
     9            RenderMathMLOperator {mfenced} at (1,0) size 6x14 [padding: 0 1 0 0]
     10              RenderMathMLBlock (flex) {mfenced} at (0,0) size 5x14
     11                RenderBlock (anonymous) at (0,0) size 5x14
     12                  RenderText {mfenced} at (0,-6) size 5x24
     13                    text run at (0,-6) width 5: "("
     14            RenderBlock {mi} at (7,3) size 7x9
     15              RenderText {#text} at (0,-9) size 7x24
     16                text run at (0,-9) width 7: "x"
     17            RenderMathMLOperator {mfenced} at (14,9) size 5x5 [padding: 0 1 0 0]
     18              RenderMathMLBlock (flex) {mfenced} at (0,0) size 4x5
     19                RenderBlock (anonymous) at (0,0) size 4x5
     20                  RenderText {mfenced} at (0,-15) size 4x24
     21                    text run at (0,-15) width 4: ","
     22            RenderBlock {mi} at (19,3) size 7x12
     23              RenderText {#text} at (0,-9) size 7x24
     24                text run at (0,-9) width 7: "y"
     25            RenderMathMLOperator {mfenced} at (26,9) size 5x5 [padding: 0 1 0 0]
     26              RenderMathMLBlock (flex) {mfenced} at (0,0) size 4x5
     27                RenderBlock (anonymous) at (0,0) size 4x5
     28                  RenderText {mfenced} at (0,-15) size 4x24
     29                    text run at (0,-15) width 4: ","
     30            RenderBlock {mi} at (31,4) size 6x9
     31              RenderText {#text} at (0,-10) size 6x24
     32                text run at (0,-10) width 6: "z"
     33            RenderMathMLOperator {mfenced} at (37,0) size 6x14 [padding: 0 1 0 0]
     34              RenderMathMLBlock (flex) {mfenced} at (0,0) size 5x14
     35                RenderBlock (anonymous) at (0,0) size 5x14
     36                  RenderText {mfenced} at (0,-6) size 5x24
     37                    text run at (0,-6) width 5: ")"
    3438        RenderText {#text} at (0,0) size 0x0
    3539      RenderBlock {p} at (0,34) size 784x18
    36         RenderMathMLMath {math} at (0,1) size 46x17 [padding: 0 1 0 1]
    37           RenderMathMLOperator {mo} at (1,0) size 7x17 [padding: 0 1 0 0]
    38             RenderMathMLBlock (inline-block) {mo} at (0,0) size 6x17
    39               RenderText {mo} at (0,-7) size 6x29
    40                 text run at (0,-7) width 6: "("
    41           RenderInline {mi} at (0,0) size 7x24
    42             RenderText {#text} at (8,-4) size 7x24
    43               text run at (8,-4) width 7: "x"
    44           RenderMathMLOperator {mo} at (15,11) size 5x5 [padding: 0 1 0 0]
    45             RenderMathMLBlock (inline-block) {mo} at (0,0) size 4x5
    46               RenderText {mo} at (0,-15) size 4x24
    47                 text run at (0,-15) width 4: ","
    48           RenderInline {mi} at (0,0) size 7x24
    49             RenderText {#text} at (20,-4) size 7x24
    50               text run at (20,-4) width 7: "y"
    51           RenderMathMLOperator {mo} at (27,11) size 5x5 [padding: 0 1 0 0]
    52             RenderMathMLBlock (inline-block) {mo} at (0,0) size 4x5
    53               RenderText {mo} at (0,-15) size 4x24
    54                 text run at (0,-15) width 4: ","
    55           RenderInline {mi} at (0,0) size 6x24
    56             RenderText {#text} at (32,-4) size 6x24
    57               text run at (32,-4) width 6: "z"
    58           RenderMathMLOperator {mo} at (38,0) size 7x17 [padding: 0 1 0 0]
    59             RenderMathMLBlock (inline-block) {mo} at (0,0) size 6x17
    60               RenderText {mo} at (0,-7) size 6x29
    61                 text run at (0,-7) width 6: ")"
     40        RenderMathMLMath {math} at (0,3) size 44x15 [padding: 0 1 0 1]
     41          RenderMathMLOperator {mo} at (1,0) size 6x14 [padding: 0 1 0 0]
     42            RenderMathMLBlock (flex) {mo} at (0,0) size 5x14
     43              RenderBlock (anonymous) at (0,0) size 5x14
     44                RenderText {mo} at (0,-6) size 5x24
     45                  text run at (0,-6) width 5: "("
     46          RenderBlock {mi} at (7,3) size 7x9
     47            RenderText {#text} at (0,-9) size 7x24
     48              text run at (0,-9) width 7: "x"
     49          RenderMathMLOperator {mo} at (14,9) size 5x5 [padding: 0 1 0 0]
     50            RenderMathMLBlock (flex) {mo} at (0,0) size 4x5
     51              RenderBlock (anonymous) at (0,0) size 4x5
     52                RenderText {mo} at (0,-15) size 4x24
     53                  text run at (0,-15) width 4: ","
     54          RenderBlock {mi} at (19,3) size 7x12
     55            RenderText {#text} at (0,-9) size 7x24
     56              text run at (0,-9) width 7: "y"
     57          RenderMathMLOperator {mo} at (26,9) size 5x5 [padding: 0 1 0 0]
     58            RenderMathMLBlock (flex) {mo} at (0,0) size 4x5
     59              RenderBlock (anonymous) at (0,0) size 4x5
     60                RenderText {mo} at (0,-15) size 4x24
     61                  text run at (0,-15) width 4: ","
     62          RenderBlock {mi} at (31,4) size 6x9
     63            RenderText {#text} at (0,-10) size 6x24
     64              text run at (0,-10) width 6: "z"
     65          RenderMathMLOperator {mo} at (37,0) size 6x14 [padding: 0 1 0 0]
     66            RenderMathMLBlock (flex) {mo} at (0,0) size 5x14
     67              RenderBlock (anonymous) at (0,0) size 5x14
     68                RenderText {mo} at (0,-6) size 5x24
     69                  text run at (0,-6) width 5: ")"
    6270        RenderText {#text} at (0,0) size 0x0
    6371      RenderBlock {p} at (0,68) size 784x18
    64         RenderMathMLMath {math} at (0,1) size 62x17 [padding: 0 1 0 1]
    65           RenderMathMLFenced {mfenced} at (1,0) size 60x17 [padding: 0 1 0 1]
    66             RenderMathMLOperator {mfenced} at (1,0) size 10x17 [padding: 0 1 0 0]
    67               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 9x17
    68                 RenderText {mfenced} at (0,-7) size 9x29
    69                   text run at (0,-7) width 9: "{"
    70             RenderInline {mi} at (0,0) size 7x24
    71               RenderText {#text} at (11,-4) size 7x24
    72                 text run at (11,-4) width 7: "x"
    73             RenderMathMLOperator {mfenced} at (18,2) size 9x12 [padding: 0 1 0 0]
    74               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 8x12
    75                 RenderText {mfenced} at (0,-6) size 8x24
    76                   text run at (0,-6) width 8: "1"
    77             RenderInline {mi} at (0,0) size 7x24
    78               RenderText {#text} at (27,-4) size 7x24
    79                 text run at (27,-4) width 7: "y"
    80             RenderMathMLOperator {mfenced} at (34,2) size 9x12 [padding: 0 1 0 0]
    81               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 8x12
    82                 RenderText {mfenced} at (0,-6) size 8x24
    83                   text run at (0,-6) width 8: "2"
    84             RenderInline {mi} at (0,0) size 6x24
    85               RenderText {#text} at (43,-4) size 6x24
    86                 text run at (43,-4) width 6: "z"
    87             RenderMathMLOperator {mfenced} at (49,0) size 10x17 [padding: 0 1 0 0]
    88               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 9x17
    89                 RenderText {mfenced} at (0,-7) size 9x29
    90                   text run at (0,-7) width 9: "}"
     72        RenderMathMLMath {math} at (0,3) size 60x15 [padding: 0 1 0 1]
     73          RenderMathMLFenced {mfenced} at (1,0) size 58x15 [padding: 0 1 0 1]
     74            RenderMathMLOperator {mfenced} at (1,0) size 9x14 [padding: 0 1 0 0]
     75              RenderMathMLBlock (flex) {mfenced} at (0,0) size 8x14
     76                RenderBlock (anonymous) at (0,0) size 8x14
     77                  RenderText {mfenced} at (0,-6) size 8x24
     78                    text run at (0,-6) width 8: "{"
     79            RenderBlock {mi} at (10,3) size 7x9
     80              RenderText {#text} at (0,-9) size 7x24
     81                text run at (0,-9) width 7: "x"
     82            RenderMathMLOperator {mfenced} at (17,0) size 9x12 [padding: 0 1 0 0]
     83              RenderMathMLBlock (flex) {mfenced} at (0,0) size 8x12
     84                RenderBlock (anonymous) at (0,0) size 8x12
     85                  RenderText {mfenced} at (0,-6) size 8x24
     86                    text run at (0,-6) width 8: "1"
     87            RenderBlock {mi} at (26,3) size 7x12
     88              RenderText {#text} at (0,-9) size 7x24
     89                text run at (0,-9) width 7: "y"
     90            RenderMathMLOperator {mfenced} at (33,0) size 9x12 [padding: 0 1 0 0]
     91              RenderMathMLBlock (flex) {mfenced} at (0,0) size 8x12
     92                RenderBlock (anonymous) at (0,0) size 8x12
     93                  RenderText {mfenced} at (0,-6) size 8x24
     94                    text run at (0,-6) width 8: "2"
     95            RenderBlock {mi} at (42,4) size 6x9
     96              RenderText {#text} at (0,-10) size 6x24
     97                text run at (0,-10) width 6: "z"
     98            RenderMathMLOperator {mfenced} at (48,0) size 9x14 [padding: 0 1 0 0]
     99              RenderMathMLBlock (flex) {mfenced} at (0,0) size 8x14
     100                RenderBlock (anonymous) at (0,0) size 8x14
     101                  RenderText {mfenced} at (0,-6) size 8x24
     102                    text run at (0,-6) width 8: "}"
    91103        RenderText {#text} at (0,0) size 0x0
    92104      RenderBlock {p} at (0,102) size 784x18
    93         RenderMathMLMath {math} at (0,1) size 109x17 [padding: 0 1 0 1]
    94           RenderMathMLFenced {mfenced} at (1,0) size 107x17 [padding: 0 1 0 1]
    95             RenderMathMLOperator {mfenced} at (1,0) size 7x17 [padding: 0 1 0 0]
    96               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 6x17
    97                 RenderText {mfenced} at (0,-7) size 6x29
    98                   text run at (0,-7) width 6: "("
    99             RenderInline {mi} at (0,0) size 7x24
    100               RenderText {#text} at (8,-4) size 7x24
    101                 text run at (8,-4) width 7: "x"
    102             RenderMathMLOperator {mfenced} at (15,2) size 9x12 [padding: 0 1 0 0]
    103               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 8x12
    104                 RenderText {mfenced} at (0,-6) size 8x24
    105                   text run at (0,-6) width 8: "1"
    106             RenderInline {mi} at (0,0) size 7x24
    107               RenderText {#text} at (24,-4) size 7x24
    108                 text run at (24,-4) width 7: "y"
    109             RenderMathMLOperator {mfenced} at (31,2) size 9x12 [padding: 0 1 0 0]
    110               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 8x12
    111                 RenderText {mfenced} at (0,-6) size 8x24
    112                   text run at (0,-6) width 8: "2"
    113             RenderInline {mi} at (0,0) size 6x24
    114               RenderText {#text} at (40,-4) size 6x24
    115                 text run at (40,-4) width 6: "z"
    116             RenderMathMLOperator {mfenced} at (46,2) size 9x12 [padding: 0 1 0 0]
    117               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 8x12
    118                 RenderText {mfenced} at (0,-6) size 8x24
    119                   text run at (0,-6) width 8: "3"
    120             RenderInline {mi} at (0,0) size 8x24
    121               RenderText {#text} at (55,-4) size 8x24
    122                 text run at (55,-4) width 8: "u"
    123             RenderMathMLOperator {mfenced} at (63,2) size 9x12 [padding: 0 1 0 0]
    124               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 8x12
    125                 RenderText {mfenced} at (0,-6) size 8x24
    126                   text run at (0,-6) width 8: "3"
    127             RenderInline {mi} at (0,0) size 7x24
    128               RenderText {#text} at (72,-4) size 7x24
    129                 text run at (72,-4) width 7: "v"
    130             RenderMathMLOperator {mfenced} at (79,2) size 9x12 [padding: 0 1 0 0]
    131               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 8x12
    132                 RenderText {mfenced} at (0,-6) size 8x24
    133                   text run at (0,-6) width 8: "3"
    134             RenderInline {mi} at (0,0) size 11x24
    135               RenderText {#text} at (88,-4) size 11x24
    136                 text run at (88,-4) width 11: "w"
    137             RenderMathMLOperator {mfenced} at (99,0) size 7x17 [padding: 0 1 0 0]
    138               RenderMathMLBlock (inline-block) {mfenced} at (0,0) size 6x17
    139                 RenderText {mfenced} at (0,-7) size 6x29
    140                   text run at (0,-7) width 6: ")"
     105        RenderMathMLMath {math} at (0,3) size 107x15 [padding: 0 1 0 1]
     106          RenderMathMLFenced {mfenced} at (1,0) size 105x15 [padding: 0 1 0 1]
     107            RenderMathMLOperator {mfenced} at (1,0) size 6x14 [padding: 0 1 0 0]
     108              RenderMathMLBlock (flex) {mfenced} at (0,0) size 5x14
     109                RenderBlock (anonymous) at (0,0) size 5x14
     110                  RenderText {mfenced} at (0,-6) size 5x24
     111                    text run at (0,-6) width 5: "("
     112            RenderBlock {mi} at (7,3) size 7x9
     113              RenderText {#text} at (0,-9) size 7x24
     114                text run at (0,-9) width 7: "x"
     115            RenderMathMLOperator {mfenced} at (14,0) size 9x12 [padding: 0 1 0 0]
     116              RenderMathMLBlock (flex) {mfenced} at (0,0) size 8x12
     117                RenderBlock (anonymous) at (0,0) size 8x12
     118                  RenderText {mfenced} at (0,-6) size 8x24
     119                    text run at (0,-6) width 8: "1"
     120            RenderBlock {mi} at (23,3) size 7x12
     121              RenderText {#text} at (0,-9) size 7x24
     122                text run at (0,-9) width 7: "y"
     123            RenderMathMLOperator {mfenced} at (30,0) size 9x12 [padding: 0 1 0 0]
     124              RenderMathMLBlock (flex) {mfenced} at (0,0) size 8x12
     125                RenderBlock (anonymous) at (0,0) size 8x12
     126                  RenderText {mfenced} at (0,-6) size 8x24
     127                    text run at (0,-6) width 8: "2"
     128            RenderBlock {mi} at (39,4) size 6x9
     129              RenderText {#text} at (0,-10) size 6x24
     130                text run at (0,-10) width 6: "z"
     131            RenderMathMLOperator {mfenced} at (45,0) size 9x12 [padding: 0 1 0 0]
     132              RenderMathMLBlock (flex) {mfenced} at (0,0) size 8x12
     133                RenderBlock (anonymous) at (0,0) size 8x12
     134                  RenderText {mfenced} at (0,-6) size 8x24
     135                    text run at (0,-6) width 8: "3"
     136            RenderBlock {mi} at (54,3) size 8x9
     137              RenderText {#text} at (0,-9) size 8x24
     138                text run at (0,-9) width 8: "u"
     139            RenderMathMLOperator {mfenced} at (62,0) size 9x12 [padding: 0 1 0 0]
     140              RenderMathMLBlock (flex) {mfenced} at (0,0) size 8x12
     141                RenderBlock (anonymous) at (0,0) size 8x12
     142                  RenderText {mfenced} at (0,-6) size 8x24
     143                    text run at (0,-6) width 8: "3"
     144            RenderBlock {mi} at (71,3) size 7x9
     145              RenderText {#text} at (0,-9) size 7x24
     146                text run at (0,-9) width 7: "v"
     147            RenderMathMLOperator {mfenced} at (78,0) size 9x12 [padding: 0 1 0 0]
     148              RenderMathMLBlock (flex) {mfenced} at (0,0) size 8x12
     149                RenderBlock (anonymous) at (0,0) size 8x12
     150                  RenderText {mfenced} at (0,-6) size 8x24
     151                    text run at (0,-6) width 8: "3"
     152            RenderBlock {mi} at (87,3) size 11x9
     153              RenderText {#text} at (0,-9) size 11x24
     154                text run at (0,-9) width 11: "w"
     155            RenderMathMLOperator {mfenced} at (98,0) size 6x14 [padding: 0 1 0 0]
     156              RenderMathMLBlock (flex) {mfenced} at (0,0) size 5x14
     157                RenderBlock (anonymous) at (0,0) size 5x14
     158                  RenderText {mfenced} at (0,-6) size 5x24
     159                    text run at (0,-6) width 5: ")"
    141160        RenderText {#text} at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/mathml/presentation/fractions-expected.txt

    r126160 r128837  
    99        RenderMathMLMath {math} at (49,0) size 16x26 [padding: 0 1 0 1]
    1010          RenderMathMLFraction {mfrac} at (1,0) size 14x26
    11             RenderMathMLBlock (anonymous, block) at (0,0) size 14x12 [padding: 0 3 0 3]
    12               RenderInline {mn} at (0,0) size 8x24
    13                 RenderText {#text} at (3,-6) size 8x24
    14                   text run at (3,-6) width 8: "1"
    15             RenderMathMLBlock (anonymous, block) at (0,12) size 14x14 [padding: 2 3 0 3]
    16               RenderInline {mn} at (0,0) size 8x24
    17                 RenderText {#text} at (3,-4) size 8x24
    18                   text run at (3,-4) width 8: "2"
     11            RenderMathMLBlock (anonymous, flex) at (0,0) size 14x12 [padding: 0 3 0 3]
     12              RenderBlock {mn} at (3,0) size 8x12
     13                RenderText {#text} at (0,-6) size 8x24
     14                  text run at (0,-6) width 8: "1"
     15            RenderMathMLBlock (anonymous, flex) at (0,12) size 14x14 [padding: 2 3 0 3]
     16              RenderBlock {mn} at (3,2) size 8x12
     17                RenderText {#text} at (0,-6) size 8x24
     18                  text run at (0,-6) width 8: "2"
    1919      RenderBlock {p} at (0,42) size 784x26
    2020        RenderText {#text} at (0,3) size 197x18
     
    2222        RenderMathMLMath {math} at (197,0) size 35x26 [padding: 0 1 0 1]
    2323          RenderMathMLFraction {mfrac} at (1,0) size 33x26 [color=#FF0000]
    24             RenderMathMLBlock (anonymous, block) at (0,0) size 33x12 [padding: 0 3 0 3]
     24            RenderMathMLBlock (anonymous, flex) at (0,0) size 33x12 [padding: 0 3 0 3]
    2525              RenderMathMLRow {mrow} at (3,0) size 27x12
    26                 RenderInline {mi} at (0,0) size 7x24
    27                   RenderText {#text} at (0,-6) size 7x24
    28                     text run at (0,-6) width 7: "x"
     26                RenderBlock {mi} at (0,3) size 7x9
     27                  RenderText {#text} at (0,-9) size 7x24
     28                    text run at (0,-9) width 7: "x"
    2929                RenderMathMLOperator {mo} at (7,2) size 12x10 [padding: 0 1 0 0]
    30                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    31                     RenderText {mo} at (0,-8) size 11x24
    32                       text run at (0,-8) width 11: "+"
    33                 RenderInline {mn} at (0,0) size 8x24
    34                   RenderText {#text} at (19,-6) size 8x24
    35                     text run at (19,-6) width 8: "1"
    36             RenderMathMLBlock (anonymous, block) at (0,12) size 33x14 [padding: 2 3 0 3]
     30                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     31                    RenderBlock (anonymous) at (0,0) size 11x10
     32                      RenderText {mo} at (0,-8) size 11x24
     33                        text run at (0,-8) width 11: "+"
     34                RenderBlock {mn} at (19,0) size 8x12
     35                  RenderText {#text} at (0,-6) size 8x24
     36                    text run at (0,-6) width 8: "1"
     37            RenderMathMLBlock (anonymous, flex) at (0,12) size 33x14 [padding: 2 3 0 3]
    3738              RenderMathMLRow {mrow} at (3,2) size 27x12
    38                 RenderInline {mi} at (0,0) size 7x24
    39                   RenderText {#text} at (0,-6) size 7x24
    40                     text run at (0,-6) width 7: "x"
     39                RenderBlock {mi} at (0,3) size 7x9
     40                  RenderText {#text} at (0,-9) size 7x24
     41                    text run at (0,-9) width 7: "x"
    4142                RenderMathMLOperator {mo} at (7,2) size 12x10 [padding: 0 1 0 0]
    42                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    43                     RenderText {mo} at (0,-8) size 11x24
    44                       text run at (0,-8) width 11: "+"
    45                 RenderInline {mn} at (0,0) size 8x24
    46                   RenderText {#text} at (19,-6) size 8x24
    47                     text run at (19,-6) width 8: "2"
     43                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     44                    RenderBlock (anonymous) at (0,0) size 11x10
     45                      RenderText {mo} at (0,-8) size 11x24
     46                        text run at (0,-8) width 11: "+"
     47                RenderBlock {mn} at (19,0) size 8x12
     48                  RenderText {#text} at (0,-6) size 8x24
     49                    text run at (0,-6) width 8: "2"
    4850        RenderText {#text} at (0,0) size 0x0
    4951      RenderBlock {p} at (0,84) size 784x32
     
    5254        RenderMathMLMath {math} at (31,0) size 128x32 [padding: 0 1 0 1]
    5355          RenderMathMLFraction {mfrac} at (1,0) size 126x32
    54             RenderMathMLBlock (anonymous, block) at (0,0) size 126x15 [padding: 0 3 0 3]
    55               RenderInline {mtext} at (0,0) size 100x24
    56                 RenderText {#text} at (13,-6) size 100x24
    57                   text run at (13,-6) width 100: "number of bugs"
    58             RenderMathMLBlock (anonymous, block) at (0,15) size 126x17 [padding: 2 3 0 3]
    59               RenderInline {mtext} at (0,0) size 120x24
    60                 RenderText {#text} at (3,-4) size 120x24
    61                   text run at (3,-4) width 120: "number of changes"
     56            RenderMathMLBlock (anonymous, flex) at (0,0) size 126x15 [padding: 0 3 0 3]
     57              RenderBlock {mtext} at (13,0) size 99x15
     58                RenderText {#text} at (0,-6) size 99x24
     59                  text run at (0,-6) width 99: "number of bugs"
     60            RenderMathMLBlock (anonymous, flex) at (0,15) size 126x17 [padding: 2 3 0 3]
     61              RenderBlock {mtext} at (3,2) size 120x15
     62                RenderText {#text} at (0,-6) size 120x24
     63                  text run at (0,-6) width 120: "number of changes"
    6264        RenderText {#text} at (0,0) size 0x0
    6365      RenderBlock {p} at (0,132) size 784x52
     
    6668        RenderMathMLMath {math} at (173,0) size 86x52 [padding: 0 1 0 1]
    6769          RenderMathMLFraction {mfrac} at (1,0) size 28x49
    68             RenderMathMLBlock (anonymous, block) at (0,0) size 28x23 [padding: 0 6 0 6]
    69               RenderInline {mn} at (0,0) size 16x49
    70                 RenderText {#text} at (6,-12) size 16x49
    71                   text run at (6,-12) width 16: "1"
    72             RenderMathMLBlock (anonymous, block) at (0,23) size 28x26 [padding: 3 6 0 6]
    73               RenderInline {mn} at (0,0) size 16x49
    74                 RenderText {#text} at (6,-9) size 16x49
    75                   text run at (6,-9) width 16: "2"
     70            RenderMathMLBlock (anonymous, flex) at (0,0) size 28x23 [padding: 0 6 0 6]
     71              RenderBlock {mn} at (6,0) size 16x23
     72                RenderText {#text} at (0,-12) size 16x49
     73                  text run at (0,-12) width 16: "1"
     74            RenderMathMLBlock (anonymous, flex) at (0,23) size 28x26 [padding: 3 6 0 6]
     75              RenderBlock {mn} at (6,3) size 16x23
     76                RenderText {#text} at (0,-12) size 16x49
     77                  text run at (0,-12) width 16: "2"
    7678          RenderMathMLFraction {mfrac} at (29,0) size 28x50
    77             RenderMathMLBlock (anonymous, block) at (0,0) size 28x23 [padding: 0 6 0 6]
    78               RenderInline {mn} at (0,0) size 16x49
    79                 RenderText {#text} at (6,-12) size 16x49
    80                   text run at (6,-12) width 16: "1"
    81             RenderMathMLBlock (anonymous, block) at (0,23) size 28x27 [padding: 4 6 0 6]
    82               RenderInline {mn} at (0,0) size 16x49
    83                 RenderText {#text} at (6,-8) size 16x49
    84                   text run at (6,-8) width 16: "2"
     79            RenderMathMLBlock (anonymous, flex) at (0,0) size 28x23 [padding: 0 6 0 6]
     80              RenderBlock {mn} at (6,0) size 16x23
     81                RenderText {#text} at (0,-12) size 16x49
     82                  text run at (0,-12) width 16: "1"
     83            RenderMathMLBlock (anonymous, flex) at (0,23) size 28x27 [padding: 4 6 0 6]
     84              RenderBlock {mn} at (6,4) size 16x23
     85                RenderText {#text} at (0,-12) size 16x49
     86                  text run at (0,-12) width 16: "2"
    8587          RenderMathMLFraction {mfrac} at (57,0) size 28x52
    86             RenderMathMLBlock (anonymous, block) at (0,0) size 28x23 [padding: 0 6 0 6]
    87               RenderInline {mn} at (0,0) size 16x49
    88                 RenderText {#text} at (6,-12) size 16x49
    89                   text run at (6,-12) width 16: "1"
    90             RenderMathMLBlock (anonymous, block) at (0,23) size 28x29 [padding: 6 6 0 6]
    91               RenderInline {mn} at (0,0) size 16x49
    92                 RenderText {#text} at (6,-6) size 16x49
    93                   text run at (6,-6) width 16: "2"
     88            RenderMathMLBlock (anonymous, flex) at (0,0) size 28x23 [padding: 0 6 0 6]
     89              RenderBlock {mn} at (6,0) size 16x23
     90                RenderText {#text} at (0,-12) size 16x49
     91                  text run at (0,-12) width 16: "1"
     92            RenderMathMLBlock (anonymous, flex) at (0,23) size 28x29 [padding: 6 6 0 6]
     93              RenderBlock {mn} at (6,6) size 16x23
     94                RenderText {#text} at (0,-12) size 16x49
     95                  text run at (0,-12) width 16: "2"
    9496        RenderText {#text} at (0,0) size 0x0
    9597      RenderBlock {p} at (0,200) size 784x24
     
    98100        RenderMathMLMath {math} at (138,0) size 97x24 [padding: 0 1 0 1]
    99101          RenderMathMLFraction {mfrac} at (1,0) size 95x24
    100             RenderMathMLBlock (anonymous, block) at (0,0) size 95x9 [padding: 0 3 0 3]
    101               RenderInline {mi} at (0,0) size 7x24
    102                 RenderText {#text} at (3,-9) size 7x24
    103                   text run at (3,-9) width 7: "x"
    104             RenderMathMLBlock (anonymous, block) at (0,9) size 95x15 [padding: 2 3 0 3]
     102            RenderMathMLBlock (anonymous, flex) at (0,0) size 95x9 [padding: 0 3 0 3]
     103              RenderBlock {mi} at (3,0) size 7x9
     104                RenderText {#text} at (0,-9) size 7x24
     105                  text run at (0,-9) width 7: "x"
     106            RenderMathMLBlock (anonymous, flex) at (0,9) size 95x15 [padding: 2 3 0 3]
    105107              RenderMathMLRow {mrow} at (4,2) size 88x13
    106                 RenderInline {mn} at (0,0) size 8x24
    107                   RenderText {#text} at (0,-5) size 8x24
    108                     text run at (0,-5) width 8: "1"
    109                 RenderMathMLOperator {mo} at (8,3) size 12x10 [padding: 0 1 0 0]
    110                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    111                     RenderText {mo} at (0,-8) size 11x24
    112                       text run at (0,-8) width 11: "+"
    113                 RenderInline {mn} at (0,0) size 8x24
    114                   RenderText {#text} at (20,-5) size 8x24
    115                     text run at (20,-5) width 8: "2"
    116                 RenderMathMLOperator {mo} at (28,3) size 12x10 [padding: 0 1 0 0]
    117                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    118                     RenderText {mo} at (0,-8) size 11x24
    119                       text run at (0,-8) width 11: "+"
    120                 RenderInline {mn} at (0,0) size 8x24
    121                   RenderText {#text} at (40,-5) size 8x24
    122                     text run at (40,-5) width 8: "3"
    123                 RenderMathMLOperator {mo} at (48,3) size 12x10 [padding: 0 1 0 0]
    124                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    125                     RenderText {mo} at (0,-8) size 11x24
    126                       text run at (0,-8) width 11: "+"
    127                 RenderInline {mn} at (0,0) size 8x24
    128                   RenderText {#text} at (60,-5) size 8x24
    129                     text run at (60,-5) width 8: "4"
    130                 RenderMathMLOperator {mo} at (68,3) size 12x10 [padding: 0 1 0 0]
    131                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    132                     RenderText {mo} at (0,-8) size 11x24
    133                       text run at (0,-8) width 11: "+"
    134                 RenderInline {mn} at (0,0) size 8x24
    135                   RenderText {#text} at (80,-5) size 8x24
    136                     text run at (80,-5) width 8: "5"
     108                RenderBlock {mn} at (0,1) size 8x12
     109                  RenderText {#text} at (0,-6) size 8x24
     110                    text run at (0,-6) width 8: "1"
     111                RenderMathMLOperator {mo} at (8,3) size 12x10 [padding: 0 1 0 0]
     112                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     113                    RenderBlock (anonymous) at (0,0) size 11x10
     114                      RenderText {mo} at (0,-8) size 11x24
     115                        text run at (0,-8) width 11: "+"
     116                RenderBlock {mn} at (20,1) size 8x12
     117                  RenderText {#text} at (0,-6) size 8x24
     118                    text run at (0,-6) width 8: "2"
     119                RenderMathMLOperator {mo} at (28,3) size 12x10 [padding: 0 1 0 0]
     120                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     121                    RenderBlock (anonymous) at (0,0) size 11x10
     122                      RenderText {mo} at (0,-8) size 11x24
     123                        text run at (0,-8) width 11: "+"
     124                RenderBlock {mn} at (40,1) size 8x12
     125                  RenderText {#text} at (0,-6) size 8x24
     126                    text run at (0,-6) width 8: "3"
     127                RenderMathMLOperator {mo} at (48,3) size 12x10 [padding: 0 1 0 0]
     128                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     129                    RenderBlock (anonymous) at (0,0) size 11x10
     130                      RenderText {mo} at (0,-8) size 11x24
     131                        text run at (0,-8) width 11: "+"
     132                RenderBlock {mn} at (60,1) size 8x12
     133                  RenderText {#text} at (0,-6) size 8x24
     134                    text run at (0,-6) width 8: "4"
     135                RenderMathMLOperator {mo} at (68,3) size 12x10 [padding: 0 1 0 0]
     136                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     137                    RenderBlock (anonymous) at (0,0) size 11x10
     138                      RenderText {mo} at (0,-8) size 11x24
     139                        text run at (0,-8) width 11: "+"
     140                RenderBlock {mn} at (80,0) size 8x13
     141                  RenderText {#text} at (0,-5) size 8x24
     142                    text run at (0,-5) width 8: "5"
    137143        RenderText {#text} at (235,0) size 4x18
    138144          text run at (235,0) width 4: " "
    139145        RenderMathMLMath {math} at (239,0) size 97x24 [padding: 0 1 0 1]
    140146          RenderMathMLFraction {mfrac} at (1,0) size 95x24
    141             RenderMathMLBlock (anonymous, block) at (0,0) size 95x9 [padding: 0 3 0 3]
    142               RenderInline {mi} at (0,0) size 7x24
    143                 RenderText {#text} at (44,-9) size 7x24
    144                   text run at (44,-9) width 7: "x"
    145             RenderMathMLBlock (anonymous, block) at (0,9) size 95x15 [padding: 2 3 0 3]
     147            RenderMathMLBlock (anonymous, flex) at (0,0) size 95x9 [padding: 0 3 0 3]
     148              RenderBlock {mi} at (44,0) size 7x9
     149                RenderText {#text} at (0,-9) size 7x24
     150                  text run at (0,-9) width 7: "x"
     151            RenderMathMLBlock (anonymous, flex) at (0,9) size 95x15 [padding: 2 3 0 3]
    146152              RenderMathMLRow {mrow} at (4,2) size 88x13
    147                 RenderInline {mn} at (0,0) size 8x24
    148                   RenderText {#text} at (0,-5) size 8x24
    149                     text run at (0,-5) width 8: "1"
    150                 RenderMathMLOperator {mo} at (8,3) size 12x10 [padding: 0 1 0 0]
    151                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    152                     RenderText {mo} at (0,-8) size 11x24
    153                       text run at (0,-8) width 11: "+"
    154                 RenderInline {mn} at (0,0) size 8x24
    155                   RenderText {#text} at (20,-5) size 8x24
    156                     text run at (20,-5) width 8: "2"
    157                 RenderMathMLOperator {mo} at (28,3) size 12x10 [padding: 0 1 0 0]
    158                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    159                     RenderText {mo} at (0,-8) size 11x24
    160                       text run at (0,-8) width 11: "+"
    161                 RenderInline {mn} at (0,0) size 8x24
    162                   RenderText {#text} at (40,-5) size 8x24
    163                     text run at (40,-5) width 8: "3"
    164                 RenderMathMLOperator {mo} at (48,3) size 12x10 [padding: 0 1 0 0]
    165                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    166                     RenderText {mo} at (0,-8) size 11x24
    167                       text run at (0,-8) width 11: "+"
    168                 RenderInline {mn} at (0,0) size 8x24
    169                   RenderText {#text} at (60,-5) size 8x24
    170                     text run at (60,-5) width 8: "4"
    171                 RenderMathMLOperator {mo} at (68,3) size 12x10 [padding: 0 1 0 0]
    172                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    173                     RenderText {mo} at (0,-8) size 11x24
    174                       text run at (0,-8) width 11: "+"
    175                 RenderInline {mn} at (0,0) size 8x24
    176                   RenderText {#text} at (80,-5) size 8x24
    177                     text run at (80,-5) width 8: "5"
     153                RenderBlock {mn} at (0,1) size 8x12
     154                  RenderText {#text} at (0,-6) size 8x24
     155                    text run at (0,-6) width 8: "1"
     156                RenderMathMLOperator {mo} at (8,3) size 12x10 [padding: 0 1 0 0]
     157                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     158                    RenderBlock (anonymous) at (0,0) size 11x10
     159                      RenderText {mo} at (0,-8) size 11x24
     160                        text run at (0,-8) width 11: "+"
     161                RenderBlock {mn} at (20,1) size 8x12
     162                  RenderText {#text} at (0,-6) size 8x24
     163                    text run at (0,-6) width 8: "2"
     164                RenderMathMLOperator {mo} at (28,3) size 12x10 [padding: 0 1 0 0]
     165                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     166                    RenderBlock (anonymous) at (0,0) size 11x10
     167                      RenderText {mo} at (0,-8) size 11x24
     168                        text run at (0,-8) width 11: "+"
     169                RenderBlock {mn} at (40,1) size 8x12
     170                  RenderText {#text} at (0,-6) size 8x24
     171                    text run at (0,-6) width 8: "3"
     172                RenderMathMLOperator {mo} at (48,3) size 12x10 [padding: 0 1 0 0]
     173                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     174                    RenderBlock (anonymous) at (0,0) size 11x10
     175                      RenderText {mo} at (0,-8) size 11x24
     176                        text run at (0,-8) width 11: "+"
     177                RenderBlock {mn} at (60,1) size 8x12
     178                  RenderText {#text} at (0,-6) size 8x24
     179                    text run at (0,-6) width 8: "4"
     180                RenderMathMLOperator {mo} at (68,3) size 12x10 [padding: 0 1 0 0]
     181                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     182                    RenderBlock (anonymous) at (0,0) size 11x10
     183                      RenderText {mo} at (0,-8) size 11x24
     184                        text run at (0,-8) width 11: "+"
     185                RenderBlock {mn} at (80,0) size 8x13
     186                  RenderText {#text} at (0,-5) size 8x24
     187                    text run at (0,-5) width 8: "5"
    178188        RenderText {#text} at (336,0) size 4x18
    179189          text run at (336,0) width 4: " "
    180190        RenderMathMLMath {math} at (340,0) size 97x24 [padding: 0 1 0 1]
    181191          RenderMathMLFraction {mfrac} at (1,0) size 95x24
    182             RenderMathMLBlock (anonymous, block) at (0,0) size 95x9 [padding: 0 3 0 3]
    183               RenderInline {mi} at (0,0) size 7x24
    184                 RenderText {#text} at (85,-9) size 7x24
    185                   text run at (85,-9) width 7: "x"
    186             RenderMathMLBlock (anonymous, block) at (0,9) size 95x15 [padding: 2 3 0 3]
     192            RenderMathMLBlock (anonymous, flex) at (0,0) size 95x9 [padding: 0 3 0 3]
     193              RenderBlock {mi} at (85,0) size 7x9
     194                RenderText {#text} at (0,-9) size 7x24
     195                  text run at (0,-9) width 7: "x"
     196            RenderMathMLBlock (anonymous, flex) at (0,9) size 95x15 [padding: 2 3 0 3]
    187197              RenderMathMLRow {mrow} at (4,2) size 88x13
    188                 RenderInline {mn} at (0,0) size 8x24
    189                   RenderText {#text} at (0,-5) size 8x24
    190                     text run at (0,-5) width 8: "1"
    191                 RenderMathMLOperator {mo} at (8,3) size 12x10 [padding: 0 1 0 0]
    192                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    193                     RenderText {mo} at (0,-8) size 11x24
    194                       text run at (0,-8) width 11: "+"
    195                 RenderInline {mn} at (0,0) size 8x24
    196                   RenderText {#text} at (20,-5) size 8x24
    197                     text run at (20,-5) width 8: "2"
    198                 RenderMathMLOperator {mo} at (28,3) size 12x10 [padding: 0 1 0 0]
    199                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    200                     RenderText {mo} at (0,-8) size 11x24
    201                       text run at (0,-8) width 11: "+"
    202                 RenderInline {mn} at (0,0) size 8x24
    203                   RenderText {#text} at (40,-5) size 8x24
    204                     text run at (40,-5) width 8: "3"
    205                 RenderMathMLOperator {mo} at (48,3) size 12x10 [padding: 0 1 0 0]
    206                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    207                     RenderText {mo} at (0,-8) size 11x24
    208                       text run at (0,-8) width 11: "+"
    209                 RenderInline {mn} at (0,0) size 8x24
    210                   RenderText {#text} at (60,-5) size 8x24
    211                     text run at (60,-5) width 8: "4"
    212                 RenderMathMLOperator {mo} at (68,3) size 12x10 [padding: 0 1 0 0]
    213                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    214                     RenderText {mo} at (0,-8) size 11x24
    215                       text run at (0,-8) width 11: "+"
    216                 RenderInline {mn} at (0,0) size 8x24
    217                   RenderText {#text} at (80,-5) size 8x24
    218                     text run at (80,-5) width 8: "5"
     198                RenderBlock {mn} at (0,1) size 8x12
     199                  RenderText {#text} at (0,-6) size 8x24
     200                    text run at (0,-6) width 8: "1"
     201                RenderMathMLOperator {mo} at (8,3) size 12x10 [padding: 0 1 0 0]
     202                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     203                    RenderBlock (anonymous) at (0,0) size 11x10
     204                      RenderText {mo} at (0,-8) size 11x24
     205                        text run at (0,-8) width 11: "+"
     206                RenderBlock {mn} at (20,1) size 8x12
     207                  RenderText {#text} at (0,-6) size 8x24
     208                    text run at (0,-6) width 8: "2"
     209                RenderMathMLOperator {mo} at (28,3) size 12x10 [padding: 0 1 0 0]
     210                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     211                    RenderBlock (anonymous) at (0,0) size 11x10
     212                      RenderText {mo} at (0,-8) size 11x24
     213                        text run at (0,-8) width 11: "+"
     214                RenderBlock {mn} at (40,1) size 8x12
     215                  RenderText {#text} at (0,-6) size 8x24
     216                    text run at (0,-6) width 8: "3"
     217                RenderMathMLOperator {mo} at (48,3) size 12x10 [padding: 0 1 0 0]
     218                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     219                    RenderBlock (anonymous) at (0,0) size 11x10
     220                      RenderText {mo} at (0,-8) size 11x24
     221                        text run at (0,-8) width 11: "+"
     222                RenderBlock {mn} at (60,1) size 8x12
     223                  RenderText {#text} at (0,-6) size 8x24
     224                    text run at (0,-6) width 8: "4"
     225                RenderMathMLOperator {mo} at (68,3) size 12x10 [padding: 0 1 0 0]
     226                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     227                    RenderBlock (anonymous) at (0,0) size 11x10
     228                      RenderText {mo} at (0,-8) size 11x24
     229                        text run at (0,-8) width 11: "+"
     230                RenderBlock {mn} at (80,0) size 8x13
     231                  RenderText {#text} at (0,-5) size 8x24
     232                    text run at (0,-5) width 8: "5"
    219233        RenderText {#text} at (0,0) size 0x0
    220234      RenderBlock {p} at (0,240) size 784x24
     
    223237        RenderMathMLMath {math} at (153,0) size 96x24 [padding: 0 1 0 1]
    224238          RenderMathMLFraction {mfrac} at (1,0) size 94x24
    225             RenderMathMLBlock (anonymous, block) at (0,0) size 94x13 [padding: 0 3 0 3]
     239            RenderMathMLBlock (anonymous, flex) at (0,0) size 94x13 [padding: 0 3 0 3]
    226240              RenderMathMLRow {mrow} at (3,0) size 88x13
    227                 RenderInline {mn} at (0,0) size 8x24
    228                   RenderText {#text} at (0,-5) size 8x24
    229                     text run at (0,-5) width 8: "1"
    230                 RenderMathMLOperator {mo} at (8,3) size 12x10 [padding: 0 1 0 0]
    231                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    232                     RenderText {mo} at (0,-8) size 11x24
    233                       text run at (0,-8) width 11: "+"
    234                 RenderInline {mn} at (0,0) size 8x24
    235                   RenderText {#text} at (20,-5) size 8x24
    236                     text run at (20,-5) width 8: "2"
    237                 RenderMathMLOperator {mo} at (28,3) size 12x10 [padding: 0 1 0 0]
    238                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    239                     RenderText {mo} at (0,-8) size 11x24
    240                       text run at (0,-8) width 11: "+"
    241                 RenderInline {mn} at (0,0) size 8x24
    242                   RenderText {#text} at (40,-5) size 8x24
    243                     text run at (40,-5) width 8: "3"
    244                 RenderMathMLOperator {mo} at (48,3) size 12x10 [padding: 0 1 0 0]
    245                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    246                     RenderText {mo} at (0,-8) size 11x24
    247                       text run at (0,-8) width 11: "+"
    248                 RenderInline {mn} at (0,0) size 8x24
    249                   RenderText {#text} at (60,-5) size 8x24
    250                     text run at (60,-5) width 8: "4"
    251                 RenderMathMLOperator {mo} at (68,3) size 12x10 [padding: 0 1 0 0]
    252                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    253                     RenderText {mo} at (0,-8) size 11x24
    254                       text run at (0,-8) width 11: "+"
    255                 RenderInline {mn} at (0,0) size 8x24
    256                   RenderText {#text} at (80,-5) size 8x24
    257                     text run at (80,-5) width 8: "5"
    258             RenderMathMLBlock (anonymous, block) at (0,13) size 94x11 [padding: 2 3 0 3]
    259               RenderInline {mi} at (0,0) size 7x24
    260                 RenderText {#text} at (3,-7) size 7x24
    261                   text run at (3,-7) width 7: "x"
     241                RenderBlock {mn} at (0,1) size 8x12
     242                  RenderText {#text} at (0,-6) size 8x24
     243                    text run at (0,-6) width 8: "1"
     244                RenderMathMLOperator {mo} at (8,3) size 12x10 [padding: 0 1 0 0]
     245                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     246                    RenderBlock (anonymous) at (0,0) size 11x10
     247                      RenderText {mo} at (0,-8) size 11x24
     248                        text run at (0,-8) width 11: "+"
     249                RenderBlock {mn} at (20,1) size 8x12
     250                  RenderText {#text} at (0,-6) size 8x24
     251                    text run at (0,-6) width 8: "2"
     252                RenderMathMLOperator {mo} at (28,3) size 12x10 [padding: 0 1 0 0]
     253                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     254                    RenderBlock (anonymous) at (0,0) size 11x10
     255                      RenderText {mo} at (0,-8) size 11x24
     256                        text run at (0,-8) width 11: "+"
     257                RenderBlock {mn} at (40,1) size 8x12
     258                  RenderText {#text} at (0,-6) size 8x24
     259                    text run at (0,-6) width 8: "3"
     260                RenderMathMLOperator {mo} at (48,3) size 12x10 [padding: 0 1 0 0]
     261                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     262                    RenderBlock (anonymous) at (0,0) size 11x10
     263                      RenderText {mo} at (0,-8) size 11x24
     264                        text run at (0,-8) width 11: "+"
     265                RenderBlock {mn} at (60,1) size 8x12
     266                  RenderText {#text} at (0,-6) size 8x24
     267                    text run at (0,-6) width 8: "4"
     268                RenderMathMLOperator {mo} at (68,3) size 12x10 [padding: 0 1 0 0]
     269                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     270                    RenderBlock (anonymous) at (0,0) size 11x10
     271                      RenderText {mo} at (0,-8) size 11x24
     272                        text run at (0,-8) width 11: "+"
     273                RenderBlock {mn} at (80,0) size 8x13
     274                  RenderText {#text} at (0,-5) size 8x24
     275                    text run at (0,-5) width 8: "5"
     276            RenderMathMLBlock (anonymous, flex) at (0,13) size 94x11 [padding: 2 3 0 3]
     277              RenderBlock {mi} at (3,2) size 7x9
     278                RenderText {#text} at (0,-9) size 7x24
     279                  text run at (0,-9) width 7: "x"
    262280        RenderText {#text} at (249,4) size 4x18
    263281          text run at (249,4) width 4: " "
    264282        RenderMathMLMath {math} at (253,0) size 96x24 [padding: 0 1 0 1]
    265283          RenderMathMLFraction {mfrac} at (1,0) size 94x24
    266             RenderMathMLBlock (anonymous, block) at (0,0) size 94x13 [padding: 0 3 0 3]
     284            RenderMathMLBlock (anonymous, flex) at (0,0) size 94x13 [padding: 0 3 0 3]
    267285              RenderMathMLRow {mrow} at (3,0) size 88x13
    268                 RenderInline {mn} at (0,0) size 8x24
    269                   RenderText {#text} at (0,-5) size 8x24
    270                     text run at (0,-5) width 8: "1"
    271                 RenderMathMLOperator {mo} at (8,3) size 12x10 [padding: 0 1 0 0]
    272                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    273                     RenderText {mo} at (0,-8) size 11x24
    274                       text run at (0,-8) width 11: "+"
    275                 RenderInline {mn} at (0,0) size 8x24
    276                   RenderText {#text} at (20,-5) size 8x24
    277                     text run at (20,-5) width 8: "2"
    278                 RenderMathMLOperator {mo} at (28,3) size 12x10 [padding: 0 1 0 0]
    279                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    280                     RenderText {mo} at (0,-8) size 11x24
    281                       text run at (0,-8) width 11: "+"
    282                 RenderInline {mn} at (0,0) size 8x24
    283                   RenderText {#text} at (40,-5) size 8x24
    284                     text run at (40,-5) width 8: "3"
    285                 RenderMathMLOperator {mo} at (48,3) size 12x10 [padding: 0 1 0 0]
    286                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    287                     RenderText {mo} at (0,-8) size 11x24
    288                       text run at (0,-8) width 11: "+"
    289                 RenderInline {mn} at (0,0) size 8x24
    290                   RenderText {#text} at (60,-5) size 8x24
    291                     text run at (60,-5) width 8: "4"
    292                 RenderMathMLOperator {mo} at (68,3) size 12x10 [padding: 0 1 0 0]
    293                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    294                     RenderText {mo} at (0,-8) size 11x24
    295                       text run at (0,-8) width 11: "+"
    296                 RenderInline {mn} at (0,0) size 8x24
    297                   RenderText {#text} at (80,-5) size 8x24
    298                     text run at (80,-5) width 8: "5"
    299             RenderMathMLBlock (anonymous, block) at (0,13) size 94x11 [padding: 2 3 0 3]
    300               RenderInline {mi} at (0,0) size 8x24
    301                 RenderText {#text} at (43,-7) size 8x24
    302                   text run at (43,-7) width 8: "x"
     286                RenderBlock {mn} at (0,1) size 8x12
     287                  RenderText {#text} at (0,-6) size 8x24
     288                    text run at (0,-6) width 8: "1"
     289                RenderMathMLOperator {mo} at (8,3) size 12x10 [padding: 0 1 0 0]
     290                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     291                    RenderBlock (anonymous) at (0,0) size 11x10
     292                      RenderText {mo} at (0,-8) size 11x24
     293                        text run at (0,-8) width 11: "+"
     294                RenderBlock {mn} at (20,1) size 8x12
     295                  RenderText {#text} at (0,-6) size 8x24
     296                    text run at (0,-6) width 8: "2"
     297                RenderMathMLOperator {mo} at (28,3) size 12x10 [padding: 0 1 0 0]
     298                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     299                    RenderBlock (anonymous) at (0,0) size 11x10
     300                      RenderText {mo} at (0,-8) size 11x24
     301                        text run at (0,-8) width 11: "+"
     302                RenderBlock {mn} at (40,1) size 8x12
     303                  RenderText {#text} at (0,-6) size 8x24
     304                    text run at (0,-6) width 8: "3"
     305                RenderMathMLOperator {mo} at (48,3) size 12x10 [padding: 0 1 0 0]
     306                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     307                    RenderBlock (anonymous) at (0,0) size 11x10
     308                      RenderText {mo} at (0,-8) size 11x24
     309                        text run at (0,-8) width 11: "+"
     310                RenderBlock {mn} at (60,1) size 8x12
     311                  RenderText {#text} at (0,-6) size 8x24
     312                    text run at (0,-6) width 8: "4"
     313                RenderMathMLOperator {mo} at (68,3) size 12x10 [padding: 0 1 0 0]
     314                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     315                    RenderBlock (anonymous) at (0,0) size 11x10
     316                      RenderText {mo} at (0,-8) size 11x24
     317                        text run at (0,-8) width 11: "+"
     318                RenderBlock {mn} at (80,0) size 8x13
     319                  RenderText {#text} at (0,-5) size 8x24
     320                    text run at (0,-5) width 8: "5"
     321            RenderMathMLBlock (anonymous, flex) at (0,13) size 94x11 [padding: 2 3 0 3]
     322              RenderBlock {mi} at (43,2) size 7x9
     323                RenderText {#text} at (0,-9) size 7x24
     324                  text run at (0,-9) width 7: "x"
    303325        RenderText {#text} at (349,4) size 4x18
    304326          text run at (349,4) width 4: " "
    305327        RenderMathMLMath {math} at (353,0) size 96x24 [padding: 0 1 0 1]
    306328          RenderMathMLFraction {mfrac} at (1,0) size 94x24
    307             RenderMathMLBlock (anonymous, block) at (0,0) size 94x13 [padding: 0 3 0 3]
     329            RenderMathMLBlock (anonymous, flex) at (0,0) size 94x13 [padding: 0 3 0 3]
    308330              RenderMathMLRow {mrow} at (3,0) size 88x13
    309                 RenderInline {mn} at (0,0) size 8x24
    310                   RenderText {#text} at (0,-5) size 8x24
    311                     text run at (0,-5) width 8: "1"
    312                 RenderMathMLOperator {mo} at (8,3) size 12x10 [padding: 0 1 0 0]
    313                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    314                     RenderText {mo} at (0,-8) size 11x24
    315                       text run at (0,-8) width 11: "+"
    316                 RenderInline {mn} at (0,0) size 8x24
    317                   RenderText {#text} at (20,-5) size 8x24
    318                     text run at (20,-5) width 8: "2"
    319                 RenderMathMLOperator {mo} at (28,3) size 12x10 [padding: 0 1 0 0]
    320                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    321                     RenderText {mo} at (0,-8) size 11x24
    322                       text run at (0,-8) width 11: "+"
    323                 RenderInline {mn} at (0,0) size 8x24
    324                   RenderText {#text} at (40,-5) size 8x24
    325                     text run at (40,-5) width 8: "3"
    326                 RenderMathMLOperator {mo} at (48,3) size 12x10 [padding: 0 1 0 0]
    327                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    328                     RenderText {mo} at (0,-8) size 11x24
    329                       text run at (0,-8) width 11: "+"
    330                 RenderInline {mn} at (0,0) size 8x24
    331                   RenderText {#text} at (60,-5) size 8x24
    332                     text run at (60,-5) width 8: "4"
    333                 RenderMathMLOperator {mo} at (68,3) size 12x10 [padding: 0 1 0 0]
    334                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    335                     RenderText {mo} at (0,-8) size 11x24
    336                       text run at (0,-8) width 11: "+"
    337                 RenderInline {mn} at (0,0) size 8x24
    338                   RenderText {#text} at (80,-5) size 8x24
    339                     text run at (80,-5) width 8: "5"
    340             RenderMathMLBlock (anonymous, block) at (0,13) size 94x11 [padding: 2 3 0 3]
    341               RenderInline {mi} at (0,0) size 7x24
    342                 RenderText {#text} at (84,-7) size 7x24
    343                   text run at (84,-7) width 7: "x"
    344         RenderText {#text} at (0,0) size 0x0
     331                RenderBlock {mn} at (0,1) size 8x12
     332                  RenderText {#text} at (0,-6) size 8x24
     333                    text run at (0,-6) width 8: "1"
     334                RenderMathMLOperator {mo} at (8,3) size 12x10 [padding: 0 1 0 0]
     335                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     336                    RenderBlock (anonymous) at (0,0) size 11x10
     337                      RenderText {mo} at (0,-8) size 11x24
     338                        text run at (0,-8) width 11: "+"
     339                RenderBlock {mn} at (20,1) size 8x12
     340                  RenderText {#text} at (0,-6) size 8x24
     341                    text run at (0,-6) width 8: "2"
     342                RenderMathMLOperator {mo} at (28,3) size 12x10 [padding: 0 1 0 0]
     343                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     344                    RenderBlock (anonymous) at (0,0) size 11x10
     345                      RenderText {mo} at (0,-8) size 11x24
     346                        text run at (0,-8) width 11: "+"
     347                RenderBlock {mn} at (40,1) size 8x12
     348                  RenderText {#text} at (0,-6) size 8x24
     349                    text run at (0,-6) width 8: "3"
     350                RenderMathMLOperator {mo} at (48,3) size 12x10 [padding: 0 1 0 0]
     351                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     352                    RenderBlock (anonymous) at (0,0) size 11x10
     353                      RenderText {mo} at (0,-8) size 11x24
     354                        text run at (0,-8) width 11: "+"
     355                RenderBlock {mn} at (60,1) size 8x12
     356                  RenderText {#text} at (0,-6) size 8x24
     357                    text run at (0,-6) width 8: "4"
     358                RenderMathMLOperator {mo} at (68,3) size 12x10 [padding: 0 1 0 0]
     359                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     360                    RenderBlock (anonymous) at (0,0) size 11x10
     361                      RenderText {mo} at (0,-8) size 11x24
     362                        text run at (0,-8) width 11: "+"
     363                RenderBlock {mn} at (80,0) size 8x13
     364                  RenderText {#text} at (0,-5) size 8x24
     365                    text run at (0,-5) width 8: "5"
     366            RenderMathMLBlock (anonymous, flex) at (0,13) size 94x11 [padding: 2 3 0 3]
     367              RenderBlock {mi} at (84,2) size 7x9
     368                RenderText {#text} at (0,-9) size 7x24
     369                  text run at (0,-9) width 7: "x"
     370        RenderText {#text} at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/mathml/presentation/fractions-vertical-alignment-expected.txt

    r124512 r128837  
    44  RenderMathMLMath {math:math} at (0,0) size 800x82 [padding: 0 1 0 1]
    55    RenderMathMLFraction {math:mfrac} at (1,28) size 17x26
    6       RenderMathMLBlock (anonymous, block) at (0,0) size 17x12 [padding: 0 3 0 3]
    7         RenderInline {math:mi} at (0,0) size 11x24
    8           RenderText {#text} at (3,-6) size 11x24
    9             text run at (3,-6) width 11: "B"
    10       RenderMathMLBlock (anonymous, block) at (0,12) size 17x14 [padding: 2 3 0 3]
    11         RenderInline {math:mi} at (0,0) size 11x24
    12           RenderText {#text} at (3,-4) size 11x24
    13             text run at (3,-4) width 11: "C"
     6      RenderMathMLBlock (anonymous, flex) at (0,0) size 17x12 [padding: 0 3 0 3]
     7        RenderBlock {math:mi} at (3,0) size 10x12
     8          RenderText {#text} at (0,-6) size 10x24
     9            text run at (0,-6) width 10: "B"
     10      RenderMathMLBlock (anonymous, flex) at (0,12) size 17x14 [padding: 2 3 0 3]
     11        RenderBlock {math:mi} at (3,2) size 11x12
     12          RenderText {#text} at (0,-6) size 11x24
     13            text run at (0,-6) width 11: "C"
    1414    RenderMathMLOperator {math:mo} at (18,36) size 12x10 [padding: 0 1 0 0]
    15       RenderMathMLBlock (inline-block) {math:mo} at (0,0) size 11x10
    16         RenderText {math:mo} at (0,-8) size 11x24
    17           text run at (0,-8) width 11: "+"
     15      RenderMathMLBlock (flex) {math:mo} at (0,0) size 11x10
     16        RenderBlock (anonymous) at (0,0) size 11x10
     17          RenderText {math:mo} at (0,-8) size 11x24
     18            text run at (0,-8) width 11: "+"
    1819    RenderMathMLFraction {math:mfrac} at (30,14) size 46x40
    19       RenderMathMLBlock (anonymous, block) at (0,0) size 46x26 [padding: 0 3 0 3]
     20      RenderMathMLBlock (anonymous, flex) at (0,0) size 46x26 [padding: 0 3 0 3]
    2021        RenderMathMLRow {math:mrow} at (3,0) size 40x26
    21           RenderInline {math:mi} at (0,0) size 10x24
    22             RenderText {#text} at (0,0) size 10x24
    23               text run at (0,0) width 10: "B"
     22          RenderBlock {math:mi} at (0,6) size 10x12
     23            RenderText {#text} at (0,-6) size 10x24
     24              text run at (0,-6) width 10: "B"
    2425          RenderMathMLOperator {math:mo} at (10,8) size 12x10 [padding: 0 1 0 0]
    25             RenderMathMLBlock (inline-block) {math:mo} at (0,0) size 11x10
    26               RenderText {math:mo} at (0,-8) size 11x24
    27                 text run at (0,-8) width 11: "+"
     26            RenderMathMLBlock (flex) {math:mo} at (0,0) size 11x10
     27              RenderBlock (anonymous) at (0,0) size 11x10
     28                RenderText {math:mo} at (0,-8) size 11x24
     29                  text run at (0,-8) width 11: "+"
    2830          RenderMathMLFraction {math:mfrac} at (22,0) size 18x26
    29             RenderMathMLBlock (anonymous, block) at (0,0) size 18x12 [padding: 0 3 0 3]
    30               RenderInline {math:mi} at (0,0) size 12x24
    31                 RenderText {#text} at (3,-6) size 12x24
    32                   text run at (3,-6) width 12: "D"
    33             RenderMathMLBlock (anonymous, block) at (0,12) size 18x14 [padding: 2 3 0 3]
    34               RenderInline {math:mi} at (0,0) size 10x24
    35                 RenderText {#text} at (4,-4) size 10x24
    36                   text run at (4,-4) width 10: "E"
    37       RenderMathMLBlock (anonymous, block) at (0,26) size 46x14 [padding: 2 3 0 3]
    38         RenderInline {math:mi} at (0,0) size 12x24
    39           RenderText {#text} at (17,-4) size 12x24
    40             text run at (17,-4) width 12: "C"
     31            RenderMathMLBlock (anonymous, flex) at (0,0) size 18x12 [padding: 0 3 0 3]
     32              RenderBlock {math:mi} at (3,0) size 12x12
     33                RenderText {#text} at (0,-6) size 12x24
     34                  text run at (0,-6) width 12: "D"
     35            RenderMathMLBlock (anonymous, flex) at (0,12) size 18x14 [padding: 2 3 0 3]
     36              RenderBlock {math:mi} at (4,2) size 10x12
     37                RenderText {#text} at (0,-6) size 10x24
     38                  text run at (0,-6) width 10: "E"
     39      RenderMathMLBlock (anonymous, flex) at (0,26) size 46x14 [padding: 2 3 0 3]
     40        RenderBlock {math:mi} at (17,2) size 11x12
     41          RenderText {#text} at (0,-6) size 11x24
     42            text run at (0,-6) width 11: "C"
    4143    RenderMathMLOperator {math:mo} at (76,36) size 12x10 [padding: 0 1 0 0]
    42       RenderMathMLBlock (inline-block) {math:mo} at (0,0) size 11x10
    43         RenderText {math:mo} at (0,-8) size 11x24
    44           text run at (0,-8) width 11: "+"
     44      RenderMathMLBlock (flex) {math:mo} at (0,0) size 11x10
     45        RenderBlock (anonymous) at (0,0) size 11x10
     46          RenderText {math:mo} at (0,-8) size 11x24
     47            text run at (0,-8) width 11: "+"
    4548    RenderMathMLFraction {math:mfrac} at (88,0) size 76x54
    46       RenderMathMLBlock (anonymous, block) at (0,0) size 76x40 [padding: 0 3 0 3]
     49      RenderMathMLBlock (anonymous, flex) at (0,0) size 76x40 [padding: 0 3 0 3]
    4750        RenderMathMLRow {math:mrow} at (3,0) size 70x40
    48           RenderInline {math:mi} at (0,0) size 10x24
    49             RenderText {#text} at (0,14) size 10x24
    50               text run at (0,14) width 10: "B"
     51          RenderBlock {math:mi} at (0,20) size 10x12
     52            RenderText {#text} at (0,-6) size 10x24
     53              text run at (0,-6) width 10: "B"
    5154          RenderMathMLOperator {math:mo} at (10,22) size 12x10 [padding: 0 1 0 0]
    52             RenderMathMLBlock (inline-block) {math:mo} at (0,0) size 11x10
    53               RenderText {math:mo} at (0,-8) size 11x24
    54                 text run at (0,-8) width 11: "+"
     55            RenderMathMLBlock (flex) {math:mo} at (0,0) size 11x10
     56              RenderBlock (anonymous) at (0,0) size 11x10
     57                RenderText {math:mo} at (0,-8) size 11x24
     58                  text run at (0,-8) width 11: "+"
    5559          RenderMathMLFraction {math:mfrac} at (22,0) size 48x40
    56             RenderMathMLBlock (anonymous, block) at (0,0) size 48x26 [padding: 0 3 0 3]
     60            RenderMathMLBlock (anonymous, flex) at (0,0) size 48x26 [padding: 0 3 0 3]
    5761              RenderMathMLRow {math:mrow} at (3,0) size 42x26
    58                 RenderInline {math:mi} at (0,0) size 12x24
    59                   RenderText {#text} at (0,0) size 12x24
    60                     text run at (0,0) width 12: "D"
     62                RenderBlock {math:mi} at (0,6) size 12x12
     63                  RenderText {#text} at (0,-6) size 12x24
     64                    text run at (0,-6) width 12: "D"
    6165                RenderMathMLOperator {math:mo} at (12,8) size 12x10 [padding: 0 1 0 0]
    62                   RenderMathMLBlock (inline-block) {math:mo} at (0,0) size 11x10
    63                     RenderText {math:mo} at (0,-8) size 11x24
    64                       text run at (0,-8) width 11: "+"
     66                  RenderMathMLBlock (flex) {math:mo} at (0,0) size 11x10
     67                    RenderBlock (anonymous) at (0,0) size 11x10
     68                      RenderText {math:mo} at (0,-8) size 11x24
     69                        text run at (0,-8) width 11: "+"
    6570                RenderMathMLFraction {math:mfrac} at (24,0) size 18x26
    66                   RenderMathMLBlock (anonymous, block) at (0,0) size 18x12 [padding: 0 3 0 3]
    67                     RenderInline {math:mi} at (0,0) size 10x24
    68                       RenderText {#text} at (4,-6) size 10x24
    69                         text run at (4,-6) width 10: "F"
    70                   RenderMathMLBlock (anonymous, block) at (0,12) size 18x14 [padding: 2 3 0 3]
    71                     RenderInline {math:mi} at (0,0) size 12x24
    72                       RenderText {#text} at (3,-4) size 12x24
    73                         text run at (3,-4) width 12: "G"
    74             RenderMathMLBlock (anonymous, block) at (0,26) size 48x14 [padding: 2 3 0 3]
    75               RenderInline {math:mi} at (0,0) size 10x24
    76                 RenderText {#text} at (19,-4) size 10x24
    77                   text run at (19,-4) width 10: "E"
    78       RenderMathMLBlock (anonymous, block) at (0,40) size 76x14 [padding: 2 3 0 3]
    79         RenderInline {math:mi} at (0,0) size 12x24
    80           RenderText {#text} at (32,-4) size 12x24
    81             text run at (32,-4) width 12: "C"
     71                  RenderMathMLBlock (anonymous, flex) at (0,0) size 18x12 [padding: 0 3 0 3]
     72                    RenderBlock {math:mi} at (4,0) size 10x12
     73                      RenderText {#text} at (0,-6) size 10x24
     74                        text run at (0,-6) width 10: "F"
     75                  RenderMathMLBlock (anonymous, flex) at (0,12) size 18x14 [padding: 2 3 0 3]
     76                    RenderBlock {math:mi} at (3,2) size 12x12
     77                      RenderText {#text} at (0,-6) size 12x24
     78                        text run at (0,-6) width 12: "G"
     79            RenderMathMLBlock (anonymous, flex) at (0,26) size 48x14 [padding: 2 3 0 3]
     80              RenderBlock {math:mi} at (19,2) size 10x12
     81                RenderText {#text} at (0,-6) size 10x24
     82                  text run at (0,-6) width 10: "E"
     83      RenderMathMLBlock (anonymous, flex) at (0,40) size 76x14 [padding: 2 3 0 3]
     84        RenderBlock {math:mi} at (32,2) size 11x12
     85          RenderText {#text} at (0,-6) size 11x24
     86            text run at (0,-6) width 11: "C"
    8287    RenderMathMLOperator {math:mo} at (164,36) size 12x10 [padding: 0 1 0 0]
    83       RenderMathMLBlock (inline-block) {math:mo} at (0,0) size 11x10
    84         RenderText {math:mo} at (0,-8) size 11x24
    85           text run at (0,-8) width 11: "+"
     88      RenderMathMLBlock (flex) {math:mo} at (0,0) size 11x10
     89        RenderBlock (anonymous) at (0,0) size 11x10
     90          RenderText {math:mo} at (0,-8) size 11x24
     91            text run at (0,-8) width 11: "+"
    8692    RenderMathMLFraction {math:mfrac} at (176,28) size 77x54
    87       RenderMathMLBlock (anonymous, block) at (0,0) size 77x12 [padding: 0 3 0 3]
    88         RenderInline {math:mi} at (0,0) size 11x24
    89           RenderText {#text} at (33,-6) size 11x24
    90             text run at (33,-6) width 11: "B"
    91       RenderMathMLBlock (anonymous, block) at (0,12) size 77x42 [padding: 2 3 0 3]
     93      RenderMathMLBlock (anonymous, flex) at (0,0) size 77x12 [padding: 0 3 0 3]
     94        RenderBlock {math:mi} at (33,0) size 10x12
     95          RenderText {#text} at (0,-6) size 10x24
     96            text run at (0,-6) width 10: "B"
     97      RenderMathMLBlock (anonymous, flex) at (0,12) size 77x42 [padding: 2 3 0 3]
    9298        RenderMathMLRow {math:mrow} at (4,2) size 70x40
    93           RenderInline {math:mi} at (0,0) size 11x24
    94             RenderText {#text} at (0,0) size 11x24
    95               text run at (0,0) width 11: "C"
     99          RenderBlock {math:mi} at (0,6) size 11x12
     100            RenderText {#text} at (0,-6) size 11x24
     101              text run at (0,-6) width 11: "C"
    96102          RenderMathMLOperator {math:mo} at (11,8) size 12x10 [padding: 0 1 0 0]
    97             RenderMathMLBlock (inline-block) {math:mo} at (0,0) size 11x10
    98               RenderText {math:mo} at (0,-8) size 11x24
    99                 text run at (0,-8) width 11: "+"
     103            RenderMathMLBlock (flex) {math:mo} at (0,0) size 11x10
     104              RenderBlock (anonymous) at (0,0) size 11x10
     105                RenderText {math:mo} at (0,-8) size 11x24
     106                  text run at (0,-8) width 11: "+"
    100107          RenderMathMLFraction {math:mfrac} at (23,0) size 47x40
    101             RenderMathMLBlock (anonymous, block) at (0,0) size 47x12 [padding: 0 3 0 3]
    102               RenderInline {math:mi} at (0,0) size 13x24
    103                 RenderText {#text} at (17,-6) size 13x24
    104                   text run at (17,-6) width 13: "D"
    105             RenderMathMLBlock (anonymous, block) at (0,12) size 47x28 [padding: 2 3 0 3]
     108            RenderMathMLBlock (anonymous, flex) at (0,0) size 47x12 [padding: 0 3 0 3]
     109              RenderBlock {math:mi} at (17,0) size 12x12
     110                RenderText {#text} at (0,-6) size 12x24
     111                  text run at (0,-6) width 12: "D"
     112            RenderMathMLBlock (anonymous, flex) at (0,12) size 47x28 [padding: 2 3 0 3]
    106113              RenderMathMLRow {math:mrow} at (4,2) size 40x26
    107                 RenderInline {math:mi} at (0,0) size 10x24
    108                   RenderText {#text} at (0,0) size 10x24
    109                     text run at (0,0) width 10: "E"
     114                RenderBlock {math:mi} at (0,6) size 10x12
     115                  RenderText {#text} at (0,-6) size 10x24
     116                    text run at (0,-6) width 10: "E"
    110117                RenderMathMLOperator {math:mo} at (10,8) size 12x10 [padding: 0 1 0 0]
    111                   RenderMathMLBlock (inline-block) {math:mo} at (0,0) size 11x10
    112                     RenderText {math:mo} at (0,-8) size 11x24
    113                       text run at (0,-8) width 11: "+"
     118                  RenderMathMLBlock (flex) {math:mo} at (0,0) size 11x10
     119                    RenderBlock (anonymous) at (0,0) size 11x10
     120                      RenderText {math:mo} at (0,-8) size 11x24
     121                        text run at (0,-8) width 11: "+"
    114122                RenderMathMLFraction {math:mfrac} at (22,0) size 18x26
    115                   RenderMathMLBlock (anonymous, block) at (0,0) size 18x12 [padding: 0 3 0 3]
    116                     RenderInline {math:mi} at (0,0) size 10x24
    117                       RenderText {#text} at (4,-6) size 10x24
    118                         text run at (4,-6) width 10: "F"
    119                   RenderMathMLBlock (anonymous, block) at (0,12) size 18x14 [padding: 2 3 0 3]
    120                     RenderInline {math:mi} at (0,0) size 12x24
    121                       RenderText {#text} at (3,-4) size 12x24
    122                         text run at (3,-4) width 12: "G"
     123                  RenderMathMLBlock (anonymous, flex) at (0,0) size 18x12 [padding: 0 3 0 3]
     124                    RenderBlock {math:mi} at (4,0) size 10x12
     125                      RenderText {#text} at (0,-6) size 10x24
     126                        text run at (0,-6) width 10: "F"
     127                  RenderMathMLBlock (anonymous, flex) at (0,12) size 18x14 [padding: 2 3 0 3]
     128                    RenderBlock {math:mi} at (3,2) size 12x12
     129                      RenderText {#text} at (0,-6) size 12x24
     130                        text run at (0,-6) width 12: "G"
  • trunk/LayoutTests/platform/mac/mathml/presentation/mo-expected.txt

    r126160 r128837  
    11layer at (0,0) size 800x600
    22  RenderView at (0,0) size 800x600
    3 layer at (0,0) size 800x268
    4   RenderBlock {html} at (0,0) size 800x268
    5     RenderBody {body} at (8,16) size 784x236
     3layer at (0,0) size 800x252
     4  RenderBlock {html} at (0,0) size 800x252
     5    RenderBody {body} at (8,16) size 784x220
    66      RenderBlock {p} at (0,0) size 784x18
    77        RenderText {#text} at (0,0) size 60x18
     
    99        RenderMathMLMath {math} at (60,4) size 14x14 [padding: 0 1 0 1]
    1010          RenderMathMLOperator {mo} at (1,0) size 12x14 [padding: 0 1 0 0]
    11             RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x14
    12               RenderText {mo} at (0,-3) size 11x18
    13                 text run at (0,-3) width 11: "\x{2211}"
     11            RenderMathMLBlock (flex) {mo} at (0,0) size 11x14
     12              RenderBlock (anonymous) at (0,0) size 11x14
     13                RenderText {mo} at (0,-3) size 11x18
     14                  text run at (0,-3) width 11: "\x{2211}"
    1415        RenderText {#text} at (74,0) size 72x18
    1516          text run at (74,0) width 72: " , operator: "
    1617        RenderMathMLMath {math} at (146,6) size 11x9 [padding: 0 1 0 1]
    1718          RenderMathMLOperator {mo} at (1,0) size 9x9 [padding: 0 1 0 0]
    18             RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x9
    19               RenderText {mo} at (0,-5) size 8x18
    20                 text run at (0,-5) width 8: "B"
     19            RenderMathMLBlock (flex) {mo} at (0,0) size 8x9
     20              RenderBlock (anonymous) at (0,0) size 8x9
     21                RenderText {mo} at (0,-5) size 8x18
     22                  text run at (0,-5) width 8: "B"
    2123        RenderText {#text} at (157,0) size 114x18
    2224          text run at (157,0) width 114: " , minus operator: "
    2325        RenderMathMLMath {math} at (271,10) size 11x5 [padding: 0 1 0 1]
    2426          RenderMathMLOperator {mo} at (1,0) size 9x5 [padding: 0 1 0 0]
    25             RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x5
    26               RenderText {mo} at (0,-9) size 8x18
    27                 text run at (0,-9) width 8: "\x{2212}"
     27            RenderMathMLBlock (flex) {mo} at (0,0) size 8x5
     28              RenderBlock (anonymous) at (0,0) size 8x5
     29                RenderText {mo} at (0,-9) size 8x18
     30                  text run at (0,-9) width 8: "\x{2212}"
    2831        RenderText {#text} at (0,0) size 0x0
    2932      RenderBlock {p} at (0,34) size 784x19
     
    3235        RenderMathMLMath {math} at (60,1) size 18x18 [padding: 0 1 0 1]
    3336          RenderMathMLOperator {mo} at (1,0) size 16x18 [padding: 0 1 0 0]
    34             RenderMathMLBlock (inline-block) {mo} at (0,0) size 15x18
    35               RenderText {mo} at (0,-4) size 15x24
    36                 text run at (0,-4) width 15: "\x{2211}"
     37            RenderMathMLBlock (flex) {mo} at (0,0) size 15x18
     38              RenderBlock (anonymous) at (0,0) size 15x18
     39                RenderText {mo} at (0,-4) size 15x24
     40                  text run at (0,-4) width 15: "\x{2211}"
    3741        RenderText {#text} at (78,0) size 72x18
    3842          text run at (78,0) width 72: " , operator: "
    3943        RenderMathMLMath {math} at (150,3) size 14x12 [padding: 0 1 0 1]
    4044          RenderMathMLOperator {mo} at (1,0) size 12x12 [padding: 0 1 0 0]
    41             RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x12
    42               RenderText {mo} at (0,-6) size 11x24
    43                 text run at (0,-6) width 11: "B"
     45            RenderMathMLBlock (flex) {mo} at (0,0) size 11x12
     46              RenderBlock (anonymous) at (0,0) size 11x12
     47                RenderText {mo} at (0,-6) size 11x24
     48                  text run at (0,-6) width 11: "B"
    4449        RenderText {#text} at (164,0) size 114x18
    4550          text run at (164,0) width 114: " , minus operator: "
    4651        RenderMathMLMath {math} at (278,9) size 14x6 [padding: 0 1 0 1]
    4752          RenderMathMLOperator {mo} at (1,0) size 12x6 [padding: 0 1 0 0]
    48             RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x6
    49               RenderText {mo} at (0,-12) size 11x24
    50                 text run at (0,-12) width 11: "\x{2212}"
     53            RenderMathMLBlock (flex) {mo} at (0,0) size 11x6
     54              RenderBlock (anonymous) at (0,0) size 11x6
     55                RenderText {mo} at (0,-12) size 11x24
     56                  text run at (0,-12) width 11: "\x{2212}"
    5157        RenderText {#text} at (0,0) size 0x0
    5258      RenderBlock {p} at (0,69) size 784x26
     
    5561        RenderMathMLMath {math} at (60,0) size 26x26 [padding: 0 1 0 1]
    5662          RenderMathMLOperator {mo} at (1,0) size 24x26 [padding: 0 2 0 0]
    57             RenderMathMLBlock (inline-block) {mo} at (0,0) size 22x26
    58               RenderText {mo} at (0,-6) size 22x36
    59                 text run at (0,-6) width 22: "\x{2211}"
     63            RenderMathMLBlock (flex) {mo} at (0,0) size 22x26
     64              RenderBlock (anonymous) at (0,0) size 22x26
     65                RenderText {mo} at (0,-6) size 22x36
     66                  text run at (0,-6) width 22: "\x{2211}"
    6067        RenderText {#text} at (86,5) size 72x18
    6168          text run at (86,5) width 72: " , operator: "
    6269        RenderMathMLMath {math} at (158,3) size 20x17 [padding: 0 1 0 1]
    6370          RenderMathMLOperator {mo} at (1,0) size 18x17 [padding: 0 2 0 0]
    64             RenderMathMLBlock (inline-block) {mo} at (0,0) size 16x17
    65               RenderText {mo} at (0,-9) size 16x36
    66                 text run at (0,-9) width 16: "B"
     71            RenderMathMLBlock (flex) {mo} at (0,0) size 16x17
     72              RenderBlock (anonymous) at (0,0) size 16x17
     73                RenderText {mo} at (0,-9) size 16x36
     74                  text run at (0,-9) width 16: "B"
    6775        RenderText {#text} at (178,5) size 114x18
    6876          text run at (178,5) width 114: " , minus operator: "
    6977        RenderMathMLMath {math} at (292,12) size 20x8 [padding: 0 1 0 1]
    7078          RenderMathMLOperator {mo} at (1,0) size 18x8 [padding: 0 2 0 0]
    71             RenderMathMLBlock (inline-block) {mo} at (0,0) size 16x8
    72               RenderText {mo} at (0,-18) size 16x36
    73                 text run at (0,-18) width 16: "\x{2212}"
     79            RenderMathMLBlock (flex) {mo} at (0,0) size 16x8
     80              RenderBlock (anonymous) at (0,0) size 16x8
     81                RenderText {mo} at (0,-18) size 16x36
     82                  text run at (0,-18) width 16: "\x{2212}"
    7483        RenderText {#text} at (0,0) size 0x0
    7584      RenderBlock {p} at (0,111) size 784x26
     
    7887        RenderMathMLMath {math} at (60,0) size 54x26 [padding: 0 1 0 1]
    7988          RenderMathMLOperator {mo} at (1,9) size 12x14 [padding: 0 1 0 0]
    80             RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x14
    81               RenderText {mo} at (0,-3) size 11x18
    82                 text run at (0,-3) width 11: "\x{2211}"
     89            RenderMathMLBlock (flex) {mo} at (0,0) size 11x14
     90              RenderBlock (anonymous) at (0,0) size 11x14
     91                RenderText {mo} at (0,-3) size 11x18
     92                  text run at (0,-3) width 11: "\x{2211}"
    8393          RenderMathMLOperator {mo} at (13,6) size 16x18 [padding: 0 1 0 0]
    84             RenderMathMLBlock (inline-block) {mo} at (0,0) size 15x18
    85               RenderText {mo} at (0,-4) size 15x24
    86                 text run at (0,-4) width 15: "\x{2211}"
     94            RenderMathMLBlock (flex) {mo} at (0,0) size 15x18
     95              RenderBlock (anonymous) at (0,0) size 15x18
     96                RenderText {mo} at (0,-4) size 15x24
     97                  text run at (0,-4) width 15: "\x{2211}"
    8798          RenderMathMLOperator {mo} at (29,0) size 24x26 [padding: 0 2 0 0]
    88             RenderMathMLBlock (inline-block) {mo} at (0,0) size 22x26
    89               RenderText {mo} at (0,-6) size 22x36
    90                 text run at (0,-6) width 22: "\x{2211}"
     99            RenderMathMLBlock (flex) {mo} at (0,0) size 22x26
     100              RenderBlock (anonymous) at (0,0) size 22x26
     101                RenderText {mo} at (0,-6) size 22x36
     102                  text run at (0,-6) width 22: "\x{2211}"
    91103        RenderText {#text} at (114,5) size 72x18
    92104          text run at (114,5) width 72: " , operator: "
    93105        RenderMathMLMath {math} at (186,3) size 41x17 [padding: 0 1 0 1]
    94106          RenderMathMLOperator {mo} at (1,8) size 9x9 [padding: 0 1 0 0]
    95             RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x9
    96               RenderText {mo} at (0,-5) size 8x18
    97                 text run at (0,-5) width 8: "B"
     107            RenderMathMLBlock (flex) {mo} at (0,0) size 8x9
     108              RenderBlock (anonymous) at (0,0) size 8x9
     109                RenderText {mo} at (0,-5) size 8x18
     110                  text run at (0,-5) width 8: "B"
    98111          RenderMathMLOperator {mo} at (10,5) size 12x12 [padding: 0 1 0 0]
    99             RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x12
    100               RenderText {mo} at (0,-6) size 11x24
    101                 text run at (0,-6) width 11: "B"
     112            RenderMathMLBlock (flex) {mo} at (0,0) size 11x12
     113              RenderBlock (anonymous) at (0,0) size 11x12
     114                RenderText {mo} at (0,-6) size 11x24
     115                  text run at (0,-6) width 11: "B"
    102116          RenderMathMLOperator {mo} at (22,0) size 18x17 [padding: 0 2 0 0]
    103             RenderMathMLBlock (inline-block) {mo} at (0,0) size 16x17
    104               RenderText {mo} at (0,-9) size 16x36
    105                 text run at (0,-9) width 16: "B"
     117            RenderMathMLBlock (flex) {mo} at (0,0) size 16x17
     118              RenderBlock (anonymous) at (0,0) size 16x17
     119                RenderText {mo} at (0,-9) size 16x36
     120                  text run at (0,-9) width 16: "B"
    106121        RenderText {#text} at (227,5) size 114x18
    107122          text run at (227,5) width 114: " , minus operator: "
    108123        RenderMathMLMath {math} at (341,12) size 41x8 [padding: 0 1 0 1]
    109124          RenderMathMLOperator {mo} at (1,3) size 9x5 [padding: 0 1 0 0]
    110             RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x5
    111               RenderText {mo} at (0,-9) size 8x18
    112                 text run at (0,-9) width 8: "\x{2212}"
     125            RenderMathMLBlock (flex) {mo} at (0,0) size 8x5
     126              RenderBlock (anonymous) at (0,0) size 8x5
     127                RenderText {mo} at (0,-9) size 8x18
     128                  text run at (0,-9) width 8: "\x{2212}"
    113129          RenderMathMLOperator {mo} at (10,2) size 12x6 [padding: 0 1 0 0]
    114             RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x6
    115               RenderText {mo} at (0,-12) size 11x24
    116                 text run at (0,-12) width 11: "\x{2212}"
     130            RenderMathMLBlock (flex) {mo} at (0,0) size 11x6
     131              RenderBlock (anonymous) at (0,0) size 11x6
     132                RenderText {mo} at (0,-12) size 11x24
     133                  text run at (0,-12) width 11: "\x{2212}"
    117134          RenderMathMLOperator {mo} at (22,0) size 18x8 [padding: 0 2 0 0]
    118             RenderMathMLBlock (inline-block) {mo} at (0,0) size 16x8
    119               RenderText {mo} at (0,-18) size 16x36
    120                 text run at (0,-18) width 16: "\x{2212}"
     135            RenderMathMLBlock (flex) {mo} at (0,0) size 16x8
     136              RenderBlock (anonymous) at (0,0) size 16x8
     137                RenderText {mo} at (0,-18) size 16x36
     138                  text run at (0,-18) width 16: "\x{2212}"
    121139        RenderText {#text} at (0,0) size 0x0
    122       RenderBlock {p} at (0,153) size 784x83
    123         RenderText {#text} at (0,38) size 60x18
    124           text run at (0,38) width 60: "operator: "
    125         RenderMathMLMath {math} at (60,0) size 105x83 [padding: 0 1 0 1]
    126           RenderMathMLOperator {mo} at (1,16) size 8x65 [padding: 0 1 0 0]
    127           RenderMathMLOperator {mo} at (9,16) size 11x67 [padding: 0 1 0 0]
    128           RenderMathMLOperator {mo} at (20,16) size 8x67 [padding: 0 1 0 0]
    129           RenderMathMLOperator {mo} at (28,16) size 6x67 [padding: 0 1 0 0]
    130           RenderBlock {div} at (36,0) size 52x52 [border: (1px solid #000000)]
    131           RenderMathMLOperator {mo} at (90,16) size 6x67 [padding: 0 1 0 0]
    132           RenderMathMLOperator {mo} at (96,16) size 8x67 [padding: 0 1 0 0]
     140      RenderBlock {p} at (0,153) size 784x67
     141        RenderText {#text} at (0,22) size 60x18
     142          text run at (0,22) width 60: "operator: "
     143        RenderMathMLMath {math} at (60,0) size 105x67 [padding: 0 1 0 1]
     144          RenderMathMLOperator {mo} at (1,0) size 8x65 [padding: 0 1 0 0]
     145          RenderMathMLOperator {mo} at (9,0) size 11x67 [padding: 0 1 0 0]
     146          RenderMathMLOperator {mo} at (20,0) size 8x67 [padding: 0 1 0 0]
     147          RenderMathMLOperator {mo} at (28,0) size 6x67 [padding: 0 1 0 0]
     148          RenderBlock {mtext} at (34,0) size 56x52
     149            RenderBlock {div} at (2,0) size 52x52 [border: (1px solid #000000)]
     150            RenderText {#text} at (0,0) size 0x0
     151          RenderMathMLOperator {mo} at (90,0) size 6x67 [padding: 0 1 0 0]
     152          RenderMathMLOperator {mo} at (96,0) size 8x67 [padding: 0 1 0 0]
    133153        RenderText {#text} at (0,0) size 0x0
    134 layer at (69,185) size 7x4 scrollHeight 13
    135   RenderMathMLBlock (block) {mo} at (0,0) size 7x4
     154layer at (69,169) size 7x4 scrollHeight 13
     155  RenderMathMLBlock (flex) {mo} at (0,0) size 7x4
     156    RenderBlock (anonymous) at (0,0) size 7x4
     157layer at (69,173) size 7x4 scrollHeight 12
     158  RenderMathMLBlock (flex) {mo} at (0,4) size 7x4
     159    RenderBlock (anonymous) at (0,0) size 7x4
     160      RenderText {mo} at (0,-9) size 7x21
     161        text run at (0,-9) width 7: "\x{23D0}"
     162layer at (69,177) size 7x4 scrollHeight 12
     163  RenderMathMLBlock (flex) {mo} at (0,8) size 7x4
     164    RenderBlock (anonymous) at (0,0) size 7x4
     165      RenderText {mo} at (0,-9) size 7x21
     166        text run at (0,-9) width 7: "\x{23D0}"
     167layer at (69,181) size 7x4 scrollHeight 12
     168  RenderMathMLBlock (flex) {mo} at (0,12) size 7x4
     169    RenderBlock (anonymous) at (0,0) size 7x4
     170      RenderText {mo} at (0,-9) size 7x21
     171        text run at (0,-9) width 7: "\x{23D0}"
     172layer at (69,185) size 7x4 scrollHeight 12
     173  RenderMathMLBlock (flex) {mo} at (0,16) size 7x4
     174    RenderBlock (anonymous) at (0,0) size 7x4
     175      RenderText {mo} at (0,-9) size 7x21
     176        text run at (0,-9) width 7: "\x{23D0}"
    136177layer at (69,189) size 7x4 scrollHeight 12
    137   RenderMathMLBlock (block) {mo} at (0,4) size 7x4
    138     RenderText {mo} at (0,-9) size 7x21
    139       text run at (0,-9) width 7: "\x{23D0}"
     178  RenderMathMLBlock (flex) {mo} at (0,20) size 7x4
     179    RenderBlock (anonymous) at (0,0) size 7x4
     180      RenderText {mo} at (0,-9) size 7x21
     181        text run at (0,-9) width 7: "\x{23D0}"
    140182layer at (69,193) size 7x4 scrollHeight 12
    141   RenderMathMLBlock (block) {mo} at (0,8) size 7x4
    142     RenderText {mo} at (0,-9) size 7x21
    143       text run at (0,-9) width 7: "\x{23D0}"
     183  RenderMathMLBlock (flex) {mo} at (0,24) size 7x4
     184    RenderBlock (anonymous) at (0,0) size 7x4
     185      RenderText {mo} at (0,-9) size 7x21
     186        text run at (0,-9) width 7: "\x{23D0}"
    144187layer at (69,197) size 7x4 scrollHeight 12
    145   RenderMathMLBlock (block) {mo} at (0,12) size 7x4
    146     RenderText {mo} at (0,-9) size 7x21
    147       text run at (0,-9) width 7: "\x{23D0}"
     188  RenderMathMLBlock (flex) {mo} at (0,28) size 7x4
     189    RenderBlock (anonymous) at (0,0) size 7x4
     190      RenderText {mo} at (0,-9) size 7x21
     191        text run at (0,-9) width 7: "\x{23D0}"
    148192layer at (69,201) size 7x4 scrollHeight 12
    149   RenderMathMLBlock (block) {mo} at (0,16) size 7x4
    150     RenderText {mo} at (0,-9) size 7x21
    151       text run at (0,-9) width 7: "\x{23D0}"
     193  RenderMathMLBlock (flex) {mo} at (0,32) size 7x4
     194    RenderBlock (anonymous) at (0,0) size 7x4
     195      RenderText {mo} at (0,-9) size 7x21
     196        text run at (0,-9) width 7: "\x{23D0}"
    152197layer at (69,205) size 7x4 scrollHeight 12
    153   RenderMathMLBlock (block) {mo} at (0,20) size 7x4
    154     RenderText {mo} at (0,-9) size 7x21
    155       text run at (0,-9) width 7: "\x{23D0}"
     198  RenderMathMLBlock (flex) {mo} at (0,36) size 7x4
     199    RenderBlock (anonymous) at (0,0) size 7x4
     200      RenderText {mo} at (0,-9) size 7x21
     201        text run at (0,-9) width 7: "\x{23D0}"
    156202layer at (69,209) size 7x4 scrollHeight 12
    157   RenderMathMLBlock (block) {mo} at (0,24) size 7x4
    158     RenderText {mo} at (0,-9) size 7x21
    159       text run at (0,-9) width 7: "\x{23D0}"
     203  RenderMathMLBlock (flex) {mo} at (0,40) size 7x4
     204    RenderBlock (anonymous) at (0,0) size 7x4
     205      RenderText {mo} at (0,-9) size 7x21
     206        text run at (0,-9) width 7: "\x{23D0}"
    160207layer at (69,213) size 7x4 scrollHeight 12
    161   RenderMathMLBlock (block) {mo} at (0,28) size 7x4
    162     RenderText {mo} at (0,-9) size 7x21
    163       text run at (0,-9) width 7: "\x{23D0}"
     208  RenderMathMLBlock (flex) {mo} at (0,44) size 7x4
     209    RenderBlock (anonymous) at (0,0) size 7x4
     210      RenderText {mo} at (0,-9) size 7x21
     211        text run at (0,-9) width 7: "\x{23D0}"
    164212layer at (69,217) size 7x4 scrollHeight 12
    165   RenderMathMLBlock (block) {mo} at (0,32) size 7x4
    166     RenderText {mo} at (0,-9) size 7x21
    167       text run at (0,-9) width 7: "\x{23D0}"
     213  RenderMathMLBlock (flex) {mo} at (0,48) size 7x4
     214    RenderBlock (anonymous) at (0,0) size 7x4
     215      RenderText {mo} at (0,-9) size 7x21
     216        text run at (0,-9) width 7: "\x{23D0}"
    168217layer at (69,221) size 7x4 scrollHeight 12
    169   RenderMathMLBlock (block) {mo} at (0,36) size 7x4
    170     RenderText {mo} at (0,-9) size 7x21
    171       text run at (0,-9) width 7: "\x{23D0}"
    172 layer at (69,225) size 7x4 scrollHeight 12
    173   RenderMathMLBlock (block) {mo} at (0,40) size 7x4
    174     RenderText {mo} at (0,-9) size 7x21
    175       text run at (0,-9) width 7: "\x{23D0}"
    176 layer at (69,229) size 7x4 scrollHeight 12
    177   RenderMathMLBlock (block) {mo} at (0,44) size 7x4
    178     RenderText {mo} at (0,-9) size 7x21
    179       text run at (0,-9) width 7: "\x{23D0}"
    180 layer at (69,233) size 7x4 scrollHeight 12
    181   RenderMathMLBlock (block) {mo} at (0,48) size 7x4
    182     RenderText {mo} at (0,-9) size 7x21
    183       text run at (0,-9) width 7: "\x{23D0}"
    184 layer at (69,237) size 7x4 scrollHeight 12
    185   RenderMathMLBlock (block) {mo} at (0,52) size 7x4
    186     RenderText {mo} at (0,-9) size 7x21
    187       text run at (0,-9) width 7: "\x{23D0}"
    188 layer at (69,241) size 7x2 scrollHeight 12
    189   RenderMathMLBlock (block) {mo} at (0,56) size 7x2
    190     RenderText {mo} at (0,-9) size 7x21
    191       text run at (0,-9) width 7: "\x{23D0}"
    192 layer at (69,243) size 7x7 scrollHeight 12
    193   RenderMathMLBlock (block) {mo} at (0,58) size 7x7
    194 layer at (77,185) size 10x10 scrollHeight 18
    195   RenderMathMLBlock (block) {mo} at (0,0) size 10x10
    196 layer at (77,195) size 10x10 scrollHeight 17
    197   RenderMathMLBlock (block) {mo} at (0,10) size 10x10
    198     RenderText {mo} at (0,-4) size 10x21
    199       text run at (0,-4) width 10: "\x{23AE}"
    200 layer at (77,205) size 10x10 scrollHeight 17
    201   RenderMathMLBlock (block) {mo} at (0,20) size 10x10
    202     RenderText {mo} at (0,-4) size 10x21
    203       text run at (0,-4) width 10: "\x{23AE}"
    204 layer at (77,215) size 10x10 scrollHeight 17
    205   RenderMathMLBlock (block) {mo} at (0,30) size 10x10
    206     RenderText {mo} at (0,-4) size 10x21
    207       text run at (0,-4) width 10: "\x{23AE}"
    208 layer at (77,225) size 10x10 scrollHeight 17
    209   RenderMathMLBlock (block) {mo} at (0,40) size 10x10
    210     RenderText {mo} at (0,-4) size 10x21
    211       text run at (0,-4) width 10: "\x{23AE}"
    212 layer at (77,235) size 10x2 scrollHeight 17
    213   RenderMathMLBlock (block) {mo} at (0,50) size 10x2
    214     RenderText {mo} at (0,-4) size 10x21
    215       text run at (0,-4) width 10: "\x{23AE}"
    216 layer at (77,237) size 10x15 scrollHeight 17
    217   RenderMathMLBlock (block) {mo} at (0,52) size 10x15
    218 layer at (88,185) size 7x10 scrollHeight 18
    219   RenderMathMLBlock (block) {mo} at (0,0) size 7x10
     218  RenderMathMLBlock (flex) {mo} at (0,52) size 7x4
     219    RenderBlock (anonymous) at (0,0) size 7x4
     220      RenderText {mo} at (0,-9) size 7x21
     221        text run at (0,-9) width 7: "\x{23D0}"
     222layer at (69,225) size 7x2 scrollHeight 12
     223  RenderMathMLBlock (flex) {mo} at (0,56) size 7x2
     224    RenderBlock (anonymous) at (0,0) size 7x2
     225      RenderText {mo} at (0,-9) size 7x21
     226        text run at (0,-9) width 7: "\x{23D0}"
     227layer at (69,227) size 7x7 scrollHeight 12
     228  RenderMathMLBlock (flex) {mo} at (0,58) size 7x7
     229    RenderBlock (anonymous) at (0,0) size 7x7
     230layer at (77,169) size 10x10 scrollHeight 18
     231  RenderMathMLBlock (flex) {mo} at (0,0) size 10x10
     232    RenderBlock (anonymous) at (0,0) size 10x10
     233layer at (77,179) size 10x10 scrollHeight 17
     234  RenderMathMLBlock (flex) {mo} at (0,10) size 10x10
     235    RenderBlock (anonymous) at (0,0) size 10x10
     236      RenderText {mo} at (0,-4) size 10x21
     237        text run at (0,-4) width 10: "\x{23AE}"
     238layer at (77,189) size 10x10 scrollHeight 17
     239  RenderMathMLBlock (flex) {mo} at (0,20) size 10x10
     240    RenderBlock (anonymous) at (0,0) size 10x10
     241      RenderText {mo} at (0,-4) size 10x21
     242        text run at (0,-4) width 10: "\x{23AE}"
     243layer at (77,199) size 10x10 scrollHeight 17
     244  RenderMathMLBlock (flex) {mo} at (0,30) size 10x10
     245    RenderBlock (anonymous) at (0,0) size 10x10
     246      RenderText {mo} at (0,-4) size 10x21
     247        text run at (0,-4) width 10: "\x{23AE}"
     248layer at (77,209) size 10x10 scrollHeight 17
     249  RenderMathMLBlock (flex) {mo} at (0,40) size 10x10
     250    RenderBlock (anonymous) at (0,0) size 10x10
     251      RenderText {mo} at (0,-4) size 10x21
     252        text run at (0,-4) width 10: "\x{23AE}"
     253layer at (77,219) size 10x2 scrollHeight 17
     254  RenderMathMLBlock (flex) {mo} at (0,50) size 10x2
     255    RenderBlock (anonymous) at (0,0) size 10x2
     256      RenderText {mo} at (0,-4) size 10x21
     257        text run at (0,-4) width 10: "\x{23AE}"
     258layer at (77,221) size 10x15 scrollHeight 17
     259  RenderMathMLBlock (flex) {mo} at (0,52) size 10x15
     260    RenderBlock (anonymous) at (0,0) size 10x15
     261layer at (88,169) size 7x10 scrollHeight 18
     262  RenderMathMLBlock (flex) {mo} at (0,0) size 7x10
     263    RenderBlock (anonymous) at (0,0) size 7x10
     264layer at (88,179) size 7x10 scrollHeight 17
     265  RenderMathMLBlock (flex) {mo} at (0,10) size 7x10
     266    RenderBlock (anonymous) at (0,0) size 7x10
     267      RenderText {mo} at (0,-4) size 7x21
     268        text run at (0,-4) width 7: "\x{23AA}"
     269layer at (88,189) size 7x6 scrollHeight 17
     270  RenderMathMLBlock (flex) {mo} at (0,20) size 7x6
     271    RenderBlock (anonymous) at (0,0) size 7x6
     272      RenderText {mo} at (0,-4) size 7x21
     273        text run at (0,-4) width 7: "\x{23AA}"
    220274layer at (88,195) size 7x10 scrollHeight 17
    221   RenderMathMLBlock (block) {mo} at (0,10) size 7x10
    222     RenderText {mo} at (0,-4) size 7x21
    223       text run at (0,-4) width 7: "\x{23AA}"
    224 layer at (88,205) size 7x6 scrollHeight 17
    225   RenderMathMLBlock (block) {mo} at (0,20) size 7x6
    226     RenderText {mo} at (0,-4) size 7x21
    227       text run at (0,-4) width 7: "\x{23AA}"
    228 layer at (88,211) size 7x10 scrollHeight 17
    229   RenderMathMLBlock (block) {mo} at (0,26) size 7x10
    230 layer at (88,221) size 7x10 scrollHeight 17
    231   RenderMathMLBlock (block) {mo} at (0,36) size 7x10
    232     RenderText {mo} at (0,-4) size 7x21
    233       text run at (0,-4) width 7: "\x{23AA}"
    234 layer at (88,231) size 7x6 scrollHeight 17
    235   RenderMathMLBlock (block) {mo} at (0,46) size 7x6
    236     RenderText {mo} at (0,-4) size 7x21
    237       text run at (0,-4) width 7: "\x{23AA}"
    238 layer at (88,237) size 7x15 scrollHeight 17
    239   RenderMathMLBlock (block) {mo} at (0,52) size 7x15
    240 layer at (96,185) size 5x10 scrollHeight 18
    241   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    242 layer at (96,195) size 5x10 scrollHeight 17
    243   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    244     RenderText {mo} at (0,-4) size 5x21
    245       text run at (0,-4) width 5: "\x{23A2}"
    246 layer at (96,205) size 5x10 scrollHeight 17
    247   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    248     RenderText {mo} at (0,-4) size 5x21
    249       text run at (0,-4) width 5: "\x{23A2}"
    250 layer at (96,215) size 5x10 scrollHeight 17
    251   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    252     RenderText {mo} at (0,-4) size 5x21
    253       text run at (0,-4) width 5: "\x{23A2}"
    254 layer at (96,225) size 5x10 scrollHeight 17
    255   RenderMathMLBlock (block) {mo} at (0,40) size 5x10
    256     RenderText {mo} at (0,-4) size 5x21
    257       text run at (0,-4) width 5: "\x{23A2}"
    258 layer at (96,235) size 5x2 scrollHeight 17
    259   RenderMathMLBlock (block) {mo} at (0,50) size 5x2
    260     RenderText {mo} at (0,-4) size 5x21
    261       text run at (0,-4) width 5: "\x{23A2}"
    262 layer at (96,237) size 5x15 scrollHeight 17
    263   RenderMathMLBlock (block) {mo} at (0,52) size 5x15
    264 layer at (158,185) size 5x10 scrollHeight 18
    265   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    266 layer at (158,195) size 5x10 scrollHeight 17
    267   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    268     RenderText {mo} at (0,-4) size 5x21
    269       text run at (0,-4) width 5: "\x{23A5}"
    270 layer at (158,205) size 5x10 scrollHeight 17
    271   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    272     RenderText {mo} at (0,-4) size 5x21
    273       text run at (0,-4) width 5: "\x{23A5}"
    274 layer at (158,215) size 5x10 scrollHeight 17
    275   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    276     RenderText {mo} at (0,-4) size 5x21
    277       text run at (0,-4) width 5: "\x{23A5}"
    278 layer at (158,225) size 5x10 scrollHeight 17
    279   RenderMathMLBlock (block) {mo} at (0,40) size 5x10
    280     RenderText {mo} at (0,-4) size 5x21
    281       text run at (0,-4) width 5: "\x{23A5}"
    282 layer at (158,235) size 5x2 scrollHeight 17
    283   RenderMathMLBlock (block) {mo} at (0,50) size 5x2
    284     RenderText {mo} at (0,-4) size 5x21
    285       text run at (0,-4) width 5: "\x{23A5}"
    286 layer at (158,237) size 5x15 scrollHeight 17
    287   RenderMathMLBlock (block) {mo} at (0,52) size 5x15
    288 layer at (164,185) size 7x10 scrollHeight 18
    289   RenderMathMLBlock (block) {mo} at (0,0) size 7x10
     275  RenderMathMLBlock (flex) {mo} at (0,26) size 7x10
     276    RenderBlock (anonymous) at (0,0) size 7x10
     277layer at (88,205) size 7x10 scrollHeight 17
     278  RenderMathMLBlock (flex) {mo} at (0,36) size 7x10
     279    RenderBlock (anonymous) at (0,0) size 7x10
     280      RenderText {mo} at (0,-4) size 7x21
     281        text run at (0,-4) width 7: "\x{23AA}"
     282layer at (88,215) size 7x6 scrollHeight 17
     283  RenderMathMLBlock (flex) {mo} at (0,46) size 7x6
     284    RenderBlock (anonymous) at (0,0) size 7x6
     285      RenderText {mo} at (0,-4) size 7x21
     286        text run at (0,-4) width 7: "\x{23AA}"
     287layer at (88,221) size 7x15 scrollHeight 17
     288  RenderMathMLBlock (flex) {mo} at (0,52) size 7x15
     289    RenderBlock (anonymous) at (0,0) size 7x15
     290layer at (96,169) size 5x10 scrollHeight 18
     291  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     292    RenderBlock (anonymous) at (0,0) size 5x10
     293layer at (96,179) size 5x10 scrollHeight 17
     294  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     295    RenderBlock (anonymous) at (0,0) size 5x10
     296      RenderText {mo} at (0,-4) size 5x21
     297        text run at (0,-4) width 5: "\x{23A2}"
     298layer at (96,189) size 5x10 scrollHeight 17
     299  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     300    RenderBlock (anonymous) at (0,0) size 5x10
     301      RenderText {mo} at (0,-4) size 5x21
     302        text run at (0,-4) width 5: "\x{23A2}"
     303layer at (96,199) size 5x10 scrollHeight 17
     304  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     305    RenderBlock (anonymous) at (0,0) size 5x10
     306      RenderText {mo} at (0,-4) size 5x21
     307        text run at (0,-4) width 5: "\x{23A2}"
     308layer at (96,209) size 5x10 scrollHeight 17
     309  RenderMathMLBlock (flex) {mo} at (0,40) size 5x10
     310    RenderBlock (anonymous) at (0,0) size 5x10
     311      RenderText {mo} at (0,-4) size 5x21
     312        text run at (0,-4) width 5: "\x{23A2}"
     313layer at (96,219) size 5x2 scrollHeight 17
     314  RenderMathMLBlock (flex) {mo} at (0,50) size 5x2
     315    RenderBlock (anonymous) at (0,0) size 5x2
     316      RenderText {mo} at (0,-4) size 5x21
     317        text run at (0,-4) width 5: "\x{23A2}"
     318layer at (96,221) size 5x15 scrollHeight 17
     319  RenderMathMLBlock (flex) {mo} at (0,52) size 5x15
     320    RenderBlock (anonymous) at (0,0) size 5x15
     321layer at (158,169) size 5x10 scrollHeight 18
     322  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     323    RenderBlock (anonymous) at (0,0) size 5x10
     324layer at (158,179) size 5x10 scrollHeight 17
     325  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     326    RenderBlock (anonymous) at (0,0) size 5x10
     327      RenderText {mo} at (0,-4) size 5x21
     328        text run at (0,-4) width 5: "\x{23A5}"
     329layer at (158,189) size 5x10 scrollHeight 17
     330  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     331    RenderBlock (anonymous) at (0,0) size 5x10
     332      RenderText {mo} at (0,-4) size 5x21
     333        text run at (0,-4) width 5: "\x{23A5}"
     334layer at (158,199) size 5x10 scrollHeight 17
     335  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     336    RenderBlock (anonymous) at (0,0) size 5x10
     337      RenderText {mo} at (0,-4) size 5x21
     338        text run at (0,-4) width 5: "\x{23A5}"
     339layer at (158,209) size 5x10 scrollHeight 17
     340  RenderMathMLBlock (flex) {mo} at (0,40) size 5x10
     341    RenderBlock (anonymous) at (0,0) size 5x10
     342      RenderText {mo} at (0,-4) size 5x21
     343        text run at (0,-4) width 5: "\x{23A5}"
     344layer at (158,219) size 5x2 scrollHeight 17
     345  RenderMathMLBlock (flex) {mo} at (0,50) size 5x2
     346    RenderBlock (anonymous) at (0,0) size 5x2
     347      RenderText {mo} at (0,-4) size 5x21
     348        text run at (0,-4) width 5: "\x{23A5}"
     349layer at (158,221) size 5x15 scrollHeight 17
     350  RenderMathMLBlock (flex) {mo} at (0,52) size 5x15
     351    RenderBlock (anonymous) at (0,0) size 5x15
     352layer at (164,169) size 7x10 scrollHeight 18
     353  RenderMathMLBlock (flex) {mo} at (0,0) size 7x10
     354    RenderBlock (anonymous) at (0,0) size 7x10
     355layer at (164,179) size 7x10 scrollHeight 17
     356  RenderMathMLBlock (flex) {mo} at (0,10) size 7x10
     357    RenderBlock (anonymous) at (0,0) size 7x10
     358      RenderText {mo} at (0,-4) size 7x21
     359        text run at (0,-4) width 7: "\x{23AA}"
     360layer at (164,189) size 7x6 scrollHeight 17
     361  RenderMathMLBlock (flex) {mo} at (0,20) size 7x6
     362    RenderBlock (anonymous) at (0,0) size 7x6
     363      RenderText {mo} at (0,-4) size 7x21
     364        text run at (0,-4) width 7: "\x{23AA}"
    290365layer at (164,195) size 7x10 scrollHeight 17
    291   RenderMathMLBlock (block) {mo} at (0,10) size 7x10
    292     RenderText {mo} at (0,-4) size 7x21
    293       text run at (0,-4) width 7: "\x{23AA}"
    294 layer at (164,205) size 7x6 scrollHeight 17
    295   RenderMathMLBlock (block) {mo} at (0,20) size 7x6
    296     RenderText {mo} at (0,-4) size 7x21
    297       text run at (0,-4) width 7: "\x{23AA}"
    298 layer at (164,211) size 7x10 scrollHeight 17
    299   RenderMathMLBlock (block) {mo} at (0,26) size 7x10
    300 layer at (164,221) size 7x10 scrollHeight 17
    301   RenderMathMLBlock (block) {mo} at (0,36) size 7x10
    302     RenderText {mo} at (0,-4) size 7x21
    303       text run at (0,-4) width 7: "\x{23AA}"
    304 layer at (164,231) size 7x6 scrollHeight 17
    305   RenderMathMLBlock (block) {mo} at (0,46) size 7x6
    306     RenderText {mo} at (0,-4) size 7x21
    307       text run at (0,-4) width 7: "\x{23AA}"
    308 layer at (164,237) size 7x15 scrollHeight 17
    309   RenderMathMLBlock (block) {mo} at (0,52) size 7x15
    310 layer at (69,186) size 7x7 backgroundClip at (69,185) size 7x4 clip at (69,185) size 7x4 outlineClip at (69,185) size 7x4
     366  RenderMathMLBlock (flex) {mo} at (0,26) size 7x10
     367    RenderBlock (anonymous) at (0,0) size 7x10
     368layer at (164,205) size 7x10 scrollHeight 17
     369  RenderMathMLBlock (flex) {mo} at (0,36) size 7x10
     370    RenderBlock (anonymous) at (0,0) size 7x10
     371      RenderText {mo} at (0,-4) size 7x21
     372        text run at (0,-4) width 7: "\x{23AA}"
     373layer at (164,215) size 7x6 scrollHeight 17
     374  RenderMathMLBlock (flex) {mo} at (0,46) size 7x6
     375    RenderBlock (anonymous) at (0,0) size 7x6
     376      RenderText {mo} at (0,-4) size 7x21
     377        text run at (0,-4) width 7: "\x{23AA}"
     378layer at (164,221) size 7x15 scrollHeight 17
     379  RenderMathMLBlock (flex) {mo} at (0,52) size 7x15
     380    RenderBlock (anonymous) at (0,0) size 7x15
     381layer at (69,170) size 7x7 backgroundClip at (69,169) size 7x4 clip at (69,169) size 7x4 outlineClip at (69,169) size 7x4
    311382  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    312383    RenderText {mo} at (0,-9) size 7x21
    313384      text run at (0,-9) width 7: "\x{23D0}"
    314 layer at (69,240) size 7x7 backgroundClip at (69,243) size 7x7 clip at (69,243) size 7x7 outlineClip at (69,243) size 7x7
     385layer at (69,224) size 7x7 backgroundClip at (69,227) size 7x7 clip at (69,227) size 7x7 outlineClip at (69,227) size 7x7
    315386  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    316387    RenderText {mo} at (0,-9) size 7x21
    317388      text run at (0,-9) width 7: "\x{23D0}"
    318 layer at (77,186) size 10x15 backgroundClip at (77,185) size 10x10 clip at (77,185) size 10x10 outlineClip at (77,185) size 10x10
     389layer at (77,170) size 10x15 backgroundClip at (77,169) size 10x10 clip at (77,169) size 10x10 outlineClip at (77,169) size 10x10
    319390  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
    320391    RenderText {mo} at (0,-4) size 10x21
    321392      text run at (0,-4) width 10: "\x{2320}"
    322 layer at (77,234) size 10x15 backgroundClip at (77,237) size 10x15 clip at (77,237) size 10x15 outlineClip at (77,237) size 10x15
     393layer at (77,218) size 10x15 backgroundClip at (77,221) size 10x15 clip at (77,221) size 10x15 outlineClip at (77,221) size 10x15
    323394  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
    324395    RenderText {mo} at (0,-4) size 10x21
    325396      text run at (0,-4) width 10: "\x{2321}"
    326 layer at (88,186) size 7x15 backgroundClip at (88,185) size 7x10 clip at (88,185) size 7x10 outlineClip at (88,185) size 7x10
     397layer at (88,170) size 7x15 backgroundClip at (88,169) size 7x10 clip at (88,169) size 7x10 outlineClip at (88,169) size 7x10
    327398  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    328399    RenderText {mo} at (0,-4) size 7x21
    329400      text run at (0,-4) width 7: "\x{23A7}"
    330 layer at (88,210) size 7x15 backgroundClip at (88,211) size 7x10 clip at (88,211) size 7x10 outlineClip at (88,211) size 7x10
     401layer at (88,194) size 7x15 backgroundClip at (88,195) size 7x10 clip at (88,195) size 7x10 outlineClip at (88,195) size 7x10
    331402  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    332403    RenderText {mo} at (0,-4) size 7x21
    333404      text run at (0,-4) width 7: "\x{23A8}"
    334 layer at (88,234) size 7x15 backgroundClip at (88,237) size 7x15 clip at (88,237) size 7x15 outlineClip at (88,237) size 7x15
     405layer at (88,218) size 7x15 backgroundClip at (88,221) size 7x15 clip at (88,221) size 7x15 outlineClip at (88,221) size 7x15
    335406  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    336407    RenderText {mo} at (0,-4) size 7x21
    337408      text run at (0,-4) width 7: "\x{23A9}"
    338 layer at (96,186) size 5x15 backgroundClip at (96,185) size 5x10 clip at (96,185) size 5x10 outlineClip at (96,185) size 5x10
     409layer at (96,170) size 5x15 backgroundClip at (96,169) size 5x10 clip at (96,169) size 5x10 outlineClip at (96,169) size 5x10
    339410  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    340411    RenderText {mo} at (0,-4) size 5x21
    341412      text run at (0,-4) width 5: "\x{23A1}"
    342 layer at (96,234) size 5x15 backgroundClip at (96,237) size 5x15 clip at (96,237) size 5x15 outlineClip at (96,237) size 5x15
     413layer at (96,218) size 5x15 backgroundClip at (96,221) size 5x15 clip at (96,221) size 5x15 outlineClip at (96,221) size 5x15
    343414  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    344415    RenderText {mo} at (0,-4) size 5x21
    345416      text run at (0,-4) width 5: "\x{23A3}"
    346 layer at (158,186) size 5x15 backgroundClip at (158,185) size 5x10 clip at (158,185) size 5x10 outlineClip at (158,185) size 5x10
     417layer at (158,170) size 5x15 backgroundClip at (158,169) size 5x10 clip at (158,169) size 5x10 outlineClip at (158,169) size 5x10
    347418  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    348419    RenderText {mo} at (0,-4) size 5x21
    349420      text run at (0,-4) width 5: "\x{23A4}"
    350 layer at (158,234) size 5x15 backgroundClip at (158,237) size 5x15 clip at (158,237) size 5x15 outlineClip at (158,237) size 5x15
     421layer at (158,218) size 5x15 backgroundClip at (158,221) size 5x15 clip at (158,221) size 5x15 outlineClip at (158,221) size 5x15
    351422  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    352423    RenderText {mo} at (0,-4) size 5x21
    353424      text run at (0,-4) width 5: "\x{23A6}"
    354 layer at (164,186) size 7x15 backgroundClip at (164,185) size 7x10 clip at (164,185) size 7x10 outlineClip at (164,185) size 7x10
     425layer at (164,170) size 7x15 backgroundClip at (164,169) size 7x10 clip at (164,169) size 7x10 outlineClip at (164,169) size 7x10
    355426  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    356427    RenderText {mo} at (0,-4) size 7x21
    357428      text run at (0,-4) width 7: "\x{23AB}"
    358 layer at (164,210) size 7x15 backgroundClip at (164,211) size 7x10 clip at (164,211) size 7x10 outlineClip at (164,211) size 7x10
     429layer at (164,194) size 7x15 backgroundClip at (164,195) size 7x10 clip at (164,195) size 7x10 outlineClip at (164,195) size 7x10
    359430  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    360431    RenderText {mo} at (0,-4) size 7x21
    361432      text run at (0,-4) width 7: "\x{23AC}"
    362 layer at (164,234) size 7x15 backgroundClip at (164,237) size 7x15 clip at (164,237) size 7x15 outlineClip at (164,237) size 7x15
     433layer at (164,218) size 7x15 backgroundClip at (164,221) size 7x15 clip at (164,221) size 7x15 outlineClip at (164,221) size 7x15
    363434  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    364435    RenderText {mo} at (0,-4) size 7x21
  • trunk/LayoutTests/platform/mac/mathml/presentation/mo-stretch-expected.txt

    r124512 r128837  
    55    RenderBody {BODY} at (8,8) size 784x323
    66      RenderMathMLMath {math} at (0,0) size 784x61 [padding: 0 1 0 1]
    7         RenderMathMLRow {mrow} at (306,0) size 173x61
     7        RenderMathMLRow {mrow} at (305,0) size 173x61
    88          RenderMathMLRow {mrow} at (0,0) size 122x61
    99            RenderMathMLRow {mrow} at (0,0) size 56x61
    10               RenderInline {mi} at (0,0) size 4x24
    11                 RenderText {#text} at (0,16) size 4x24
    12                   text run at (0,16) width 4: "f"
     10              RenderBlock {mi} at (0,22) size 4x15
     11                RenderText {#text} at (0,-6) size 4x24
     12                  text run at (0,-6) width 4: "f"
    1313              RenderMathMLRow {mrow} at (5,0) size 51x61
    1414                RenderMathMLOperator {mo} at (0,0) size 6x61 [padding: 0 1 0 0]
    1515                RenderMathMLFraction {mfrac} at (6,5) size 39x48
    16                   RenderMathMLBlock (anonymous, block) at (0,0) size 39x23 [padding: 0 3 0 3]
     16                  RenderMathMLBlock (anonymous, flex) at (0,0) size 39x23 [padding: 0 3 0 3]
    1717                    RenderMathMLRow {mrow} at (3,0) size 33x23
    1818                      RenderMathMLFraction {mfrac} at (0,0) size 14x23
    19                         RenderMathMLBlock (anonymous, block) at (0,0) size 14x9 [padding: 0 3 0 3]
    20                           RenderInline {mi} at (0,0) size 8x24
    21                             RenderText {#text} at (3,-9) size 8x24
    22                               text run at (3,-9) width 8: "a"
    23                         RenderMathMLBlock (anonymous, block) at (0,9) size 14x14 [padding: 2 3 0 3]
    24                           RenderInline {mi} at (0,0) size 8x24
    25                             RenderText {#text} at (3,-4) size 8x24
    26                               text run at (3,-4) width 8: "b"
     19                        RenderMathMLBlock (anonymous, flex) at (0,0) size 14x9 [padding: 0 3 0 3]
     20                          RenderBlock {mi} at (3,0) size 8x9
     21                            RenderText {#text} at (0,-9) size 8x24
     22                              text run at (0,-9) width 8: "a"
     23                        RenderMathMLBlock (anonymous, flex) at (0,9) size 14x14 [padding: 2 3 0 3]
     24                          RenderBlock {mi} at (3,2) size 8x12
     25                            RenderText {#text} at (0,-6) size 8x24
     26                              text run at (0,-6) width 8: "b"
    2727                      RenderMathMLOperator {mo} at (14,5) size 12x10 [padding: 0 1 0 0]
    28                         RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    29                           RenderText {mo} at (0,-8) size 11x24
    30                             text run at (0,-8) width 11: "+"
    31                       RenderInline {mi} at (0,0) size 7x24
    32                         RenderText {#text} at (26,-3) size 7x24
    33                           text run at (26,-3) width 7: "c"
    34                   RenderMathMLBlock (anonymous, block) at (0,23) size 39x25 [padding: 2 3 0 3]
     28                        RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     29                          RenderBlock (anonymous) at (0,0) size 11x10
     30                            RenderText {mo} at (0,-8) size 11x24
     31                              text run at (0,-8) width 11: "+"
     32                      RenderBlock {mi} at (26,6) size 7x9
     33                        RenderText {#text} at (0,-9) size 7x24
     34                          text run at (0,-9) width 7: "c"
     35                  RenderMathMLBlock (anonymous, flex) at (0,23) size 39x25 [padding: 2 3 0 3]
    3536                    RenderMathMLRow {mrow} at (3,2) size 33x23
    3637                      RenderMathMLFraction {mfrac} at (0,0) size 14x23
    37                         RenderMathMLBlock (anonymous, block) at (0,0) size 14x9 [padding: 0 3 0 3]
    38                           RenderInline {mi} at (0,0) size 8x24
    39                             RenderText {#text} at (3,-9) size 8x24
    40                               text run at (3,-9) width 8: "c"
    41                         RenderMathMLBlock (anonymous, block) at (0,9) size 14x14 [padding: 2 3 0 3]
    42                           RenderInline {mi} at (0,0) size 8x24
    43                             RenderText {#text} at (3,-4) size 8x24
    44                               text run at (3,-4) width 8: "d"
     38                        RenderMathMLBlock (anonymous, flex) at (0,0) size 14x9 [padding: 0 3 0 3]
     39                          RenderBlock {mi} at (3,0) size 7x9
     40                            RenderText {#text} at (0,-9) size 7x24
     41                              text run at (0,-9) width 7: "c"
     42                        RenderMathMLBlock (anonymous, flex) at (0,9) size 14x14 [padding: 2 3 0 3]
     43                          RenderBlock {mi} at (3,2) size 8x12
     44                            RenderText {#text} at (0,-6) size 8x24
     45                              text run at (0,-6) width 8: "d"
    4546                      RenderMathMLOperator {mo} at (14,5) size 12x10 [padding: 0 1 0 0]
    46                         RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    47                           RenderText {mo} at (0,-8) size 11x24
    48                             text run at (0,-8) width 11: "+"
    49                       RenderInline {mi} at (0,0) size 7x24
    50                         RenderText {#text} at (26,-3) size 7x24
    51                           text run at (26,-3) width 7: "e"
     47                        RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     48                          RenderBlock (anonymous) at (0,0) size 11x10
     49                            RenderText {mo} at (0,-8) size 11x24
     50                              text run at (0,-8) width 11: "+"
     51                      RenderBlock {mi} at (26,6) size 7x9
     52                        RenderText {#text} at (0,-9) size 7x24
     53                          text run at (0,-9) width 7: "e"
    5254                RenderMathMLOperator {mo} at (45,0) size 6x61 [padding: 0 1 0 0]
    5355            RenderMathMLOperator {mo} at (56,24) size 12x10 [padding: 0 1 0 0]
    54               RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    55                 RenderText {mo} at (0,-8) size 11x24
    56                   text run at (0,-8) width 11: "+"
     56              RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     57                RenderBlock (anonymous) at (0,0) size 11x10
     58                  RenderText {mo} at (0,-8) size 11x24
     59                    text run at (0,-8) width 11: "+"
    5760            RenderMathMLRow {mrow} at (68,7) size 54x50
    58               RenderInline {mi} at (0,0) size 8x24
    59                 RenderText {#text} at (0,9) size 8x24
    60                   text run at (0,9) width 8: "g"
     61              RenderBlock {mi} at (0,18) size 8x12
     62                RenderText {#text} at (0,-9) size 8x24
     63                  text run at (0,-9) width 8: "g"
    6164              RenderMathMLRow {mrow} at (9,0) size 45x50
    6265                RenderMathMLOperator {mo} at (0,0) size 6x50 [padding: 0 1 0 0]
    6366                RenderMathMLSubSup {msubsup} at (6,4) size 33x38
    64                   RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x23 [padding: 14 0 0 0]
    65                     RenderInline {mi} at (0,0) size 7x24
    66                       RenderText {#text} at (0,5) size 7x24
    67                         text run at (0,5) width 7: "x"
    68                   RenderMathMLBlock (anonymous, inline-block) at (8,0) size 25x38
    69                     RenderMathMLBlock (anonymous, block) at (0,0) size 25x19
    70                       RenderMathMLRow {mrow} at (0,0) size 24x19
    71                         RenderMathMLFraction {mfrac} at (0,0) size 10x19
    72                           RenderMathMLBlock (anonymous, block) at (0,0) size 10x7 [padding: 0 2 0 2]
    73                             RenderInline {mi} at (0,0) size 6x18
    74                               RenderText {#text} at (2,-7) size 6x18
    75                                 text run at (2,-7) width 6: "a"
    76                           RenderMathMLBlock (anonymous, block) at (0,7) size 10x12 [padding: 2 2 0 2]
    77                             RenderInline {mi} at (0,0) size 6x18
    78                               RenderText {#text} at (2,-2) size 6x18
    79                                 text run at (2,-2) width 6: "b"
    80                         RenderMathMLOperator {mo} at (10,4) size 9x8 [padding: 0 1 0 0]
    81                           RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
     67                  RenderMathMLBlock (anonymous, flex) at (0,0) size 7x38 [padding: 14 0 0 0]
     68                    RenderBlock {mi} at (0,14) size 7x24
     69                      RenderText {#text} at (0,-9) size 7x24
     70                        text run at (0,-9) width 7: "x"
     71                  RenderMathMLBlock (anonymous, flex) at (8,0) size 25x38
     72                    RenderMathMLRow {mrow} at (1,19) size 24x19
     73                      RenderMathMLFraction {mfrac} at (0,0) size 10x19
     74                        RenderMathMLBlock (anonymous, flex) at (0,0) size 10x7 [padding: 0 2 0 2]
     75                          RenderBlock {mi} at (2,0) size 5x7
     76                            RenderText {#text} at (0,-7) size 5x18
     77                              text run at (0,-7) width 5: "c"
     78                        RenderMathMLBlock (anonymous, flex) at (0,7) size 10x12 [padding: 2 2 0 2]
     79                          RenderBlock {mi} at (2,2) size 6x10
     80                            RenderText {#text} at (0,-4) size 6x18
     81                              text run at (0,-4) width 6: "d"
     82                      RenderMathMLOperator {mo} at (10,4) size 9x8 [padding: 0 1 0 0]
     83                        RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     84                          RenderBlock (anonymous) at (0,0) size 8x8
    8285                            RenderText {mo} at (0,-6) size 8x18
    8386                              text run at (0,-6) width 8: "+"
    84                         RenderInline {mi} at (0,0) size 5x18
    85                           RenderText {#text} at (19,-2) size 5x18
    86                             text run at (19,-2) width 5: "c"
    87                     RenderMathMLBlock (anonymous, block) at (0,19) size 25x19
    88                       RenderMathMLRow {mrow} at (1,0) size 24x19
    89                         RenderMathMLFraction {mfrac} at (0,0) size 10x19
    90                           RenderMathMLBlock (anonymous, block) at (0,0) size 10x7 [padding: 0 2 0 2]
    91                             RenderInline {mi} at (0,0) size 6x18
    92                               RenderText {#text} at (2,-7) size 6x18
    93                                 text run at (2,-7) width 6: "c"
    94                           RenderMathMLBlock (anonymous, block) at (0,7) size 10x12 [padding: 2 2 0 2]
    95                             RenderInline {mi} at (0,0) size 6x18
    96                               RenderText {#text} at (2,-2) size 6x18
    97                                 text run at (2,-2) width 6: "d"
    98                         RenderMathMLOperator {mo} at (10,4) size 9x8 [padding: 0 1 0 0]
    99                           RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
     87                      RenderBlock {mi} at (19,5) size 5x7
     88                        RenderText {#text} at (0,-7) size 5x18
     89                          text run at (0,-7) width 5: "e"
     90                    RenderMathMLRow {mrow} at (0,0) size 25x19
     91                      RenderMathMLFraction {mfrac} at (0,0) size 10x19
     92                        RenderMathMLBlock (anonymous, flex) at (0,0) size 10x7 [padding: 0 2 0 2]
     93                          RenderBlock {mi} at (2,0) size 6x7
     94                            RenderText {#text} at (0,-7) size 6x18
     95                              text run at (0,-7) width 6: "a"
     96                        RenderMathMLBlock (anonymous, flex) at (0,7) size 10x12 [padding: 2 2 0 2]
     97                          RenderBlock {mi} at (2,2) size 6x10
     98                            RenderText {#text} at (0,-4) size 6x18
     99                              text run at (0,-4) width 6: "b"
     100                      RenderMathMLOperator {mo} at (10,4) size 9x8 [padding: 0 1 0 0]
     101                        RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     102                          RenderBlock (anonymous) at (0,0) size 8x8
    100103                            RenderText {mo} at (0,-6) size 8x18
    101104                              text run at (0,-6) width 8: "+"
    102                         RenderInline {mi} at (0,0) size 5x18
    103                           RenderText {#text} at (19,-2) size 5x18
    104                             text run at (19,-2) width 5: "e"
     105                      RenderBlock {mi} at (19,5) size 5x7
     106                        RenderText {#text} at (0,-7) size 5x18
     107                          text run at (0,-7) width 5: "c"
    105108                RenderMathMLOperator {mo} at (39,0) size 6x50 [padding: 0 1 0 0]
    106109          RenderMathMLOperator {mo} at (122,24) size 12x10 [padding: 0 1 0 0]
    107             RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    108               RenderText {mo} at (0,-8) size 11x24
    109                 text run at (0,-8) width 11: "+"
     110            RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     111              RenderBlock (anonymous) at (0,0) size 11x10
     112                RenderText {mo} at (0,-8) size 11x24
     113                  text run at (0,-8) width 11: "+"
    110114          RenderMathMLRow {mrow} at (134,8) size 39x47
    111115            RenderMathMLSubSup {msubsup} at (0,0) size 17x47
    112               RenderMathMLBlock (anonymous, inline-block) at (0,0) size 10x47
     116              RenderMathMLBlock (anonymous, flex) at (0,0) size 10x47
    113117                RenderMathMLOperator {mo} at (0,0) size 10x47
    114               RenderMathMLBlock (anonymous, inline-block) at (11,0) size 6x47
    115                 RenderMathMLBlock (anonymous, block) at (0,0) size 6x40 [padding: 0 0 30 0]
    116                   RenderInline {mi} at (0,0) size 6x18
    117                     RenderText {#text} at (0,-4) size 6x18
    118                       text run at (0,-4) width 6: "b"
    119                 RenderMathMLBlock (anonymous, block) at (0,40) size 6x7
    120                   RenderInline {mi} at (0,0) size 6x18
    121                     RenderText {#text} at (0,-7) size 6x18
    122                       text run at (0,-7) width 6: "a"
     118              RenderMathMLBlock (anonymous, flex) at (11,0) size 6x47
     119                RenderBlock {mi} at (0,40) size 6x7
     120                  RenderText {#text} at (0,-7) size 6x18
     121                    text run at (0,-7) width 6: "a"
     122                RenderBlock {mi} at (0,0) size 6x10
     123                  RenderText {#text} at (0,-4) size 6x18
     124                    text run at (0,-4) width 6: "b"
    123125            RenderMathMLRow {mrow} at (17,5) size 22x35
    124126              RenderMathMLUnderOver {munderover} at (0,0) size 18x35
    125                 RenderMathMLBlock (anonymous, block) at (0,0) size 18x7
    126                   RenderInline {mi} at (0,0) size 6x18
    127                     RenderText {#text} at (6,-7) size 6x18
    128                       text run at (6,-7) width 6: "n"
    129                 RenderMathMLBlock (anonymous, block) at (0,7) size 18x18
    130                   RenderMathMLOperator {mo} at (2,0) size 15x18
    131                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 15x18
     127                RenderMathMLOperator {mo} at (1,7) size 15x18
     128                  RenderMathMLBlock (flex) {mo} at (0,0) size 15x18
     129                    RenderBlock (anonymous) at (0,0) size 15x18
    132130                      RenderText {mo} at (0,-4) size 15x24
    133131                        text run at (0,-4) width 15: "\x{2211}"
    134                 RenderMathMLBlock (anonymous, block) at (0,25) size 18x10
    135                   RenderMathMLRow {mrow} at (0,0) size 18x10
    136                     RenderInline {mi} at (0,0) size 3x18
    137                       RenderText {#text} at (0,-4) size 3x18
    138                         text run at (0,-4) width 3: "i"
    139                     RenderMathMLOperator {mo} at (3,4) size 9x6 [padding: 0 1 0 0]
    140                       RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x6
     132                RenderMathMLRow {mrow} at (0,25) size 18x10
     133                  RenderBlock {mi} at (0,1) size 3x9
     134                    RenderText {#text} at (0,-5) size 3x18
     135                      text run at (0,-5) width 3: "i"
     136                  RenderMathMLOperator {mo} at (3,4) size 9x6 [padding: 0 1 0 0]
     137                    RenderMathMLBlock (flex) {mo} at (0,0) size 8x6
     138                      RenderBlock (anonymous) at (0,0) size 8x6
    141139                        RenderText {mo} at (0,-8) size 8x18
    142140                          text run at (0,-8) width 8: "="
    143                     RenderInline {mn} at (0,0) size 6x18
    144                       RenderText {#text} at (12,-4) size 6x18
    145                         text run at (12,-4) width 6: "0"
    146               RenderInline {mi} at (0,0) size 4x24
    147                 RenderText {#text} at (18,3) size 4x24
    148                   text run at (18,3) width 4: "i"
     141                  RenderBlock {mn} at (12,0) size 6x10
     142                    RenderText {#text} at (0,-4) size 6x18
     143                      text run at (0,-4) width 6: "0"
     144                RenderBlock {mi} at (6,0) size 6x7
     145                  RenderText {#text} at (0,-7) size 6x18
     146                    text run at (0,-7) width 6: "n"
     147              RenderBlock {mi} at (18,9) size 4x12
     148                RenderText {#text} at (0,-6) size 4x24
     149                  text run at (0,-6) width 4: "i"
    149150      RenderBlock {P} at (0,77) size 784x18
    150151        RenderText {#text} at (0,0) size 52x18
     
    158159        RenderMathMLSquareRoot {msqrt} at (372,0) size 40x41 [intrinsic padding: 3 0 3 12]
    159160          RenderMathMLRow (anonymous) at (12,3) size 28x35
    160             RenderInline {mi} at (0,0) size 4x24
    161               RenderText {#text} at (0,0) size 4x24
    162                 text run at (0,0) width 4: "f"
     161            RenderBlock {mi} at (0,6) size 4x15
     162              RenderText {#text} at (0,-6) size 4x24
     163                text run at (0,-6) width 4: "f"
    163164            RenderMathMLOperator {mo} at (4,0) size 5x35
    164165            RenderMathMLFraction {mfrac} at (9,0) size 14x26
    165               RenderMathMLBlock (anonymous, block) at (0,0) size 14x12 [padding: 0 3 0 3]
    166                 RenderInline {mn} at (0,0) size 8x24
    167                   RenderText {#text} at (3,-6) size 8x24
    168                     text run at (3,-6) width 8: "1"
    169               RenderMathMLBlock (anonymous, block) at (0,12) size 14x14 [padding: 2 3 0 3]
    170                 RenderInline {mi} at (0,0) size 8x24
    171                   RenderText {#text} at (3,-7) size 8x24
    172                     text run at (3,-7) width 8: "y"
     166              RenderMathMLBlock (anonymous, flex) at (0,0) size 14x12 [padding: 0 3 0 3]
     167                RenderBlock {mn} at (3,0) size 8x12
     168                  RenderText {#text} at (0,-6) size 8x24
     169                    text run at (0,-6) width 8: "1"
     170              RenderMathMLBlock (anonymous, flex) at (0,12) size 14x14 [padding: 2 3 0 3]
     171                RenderBlock {mi} at (3,2) size 7x12
     172                  RenderText {#text} at (0,-9) size 7x24
     173                    text run at (0,-9) width 7: "y"
    173174            RenderMathMLOperator {mo} at (23,0) size 5x35
    174175      RenderBlock {P} at (0,168) size 784x18
     
    181182              RenderText {#text} at (4,4) size 7x18
    182183                text run at (4,4) width 7: "a"
    183       RenderTable {TABLE} at (0,232) size 123x91
    184         RenderTableSection {TBODY} at (0,0) size 123x91
    185           RenderTableRow {TR} at (0,2) size 123x87
    186             RenderTableCell {TD} at (2,2) size 119x87 [border: (3px solid #000000)] [r=0 c=0 rs=1 cs=1]
    187               RenderMathMLMath {math} at (4,4) size 111x79 [padding: 0 1 0 1]
    188                 RenderMathMLRow {mrow} at (1,0) size 109x79
    189                   RenderMathMLRow {mrow} at (0,30) size 27x17
    190                     RenderMathMLOperator {mo} at (0,0) size 10x17 [padding: 0 1 0 0]
    191                       RenderMathMLBlock (inline-block) {mo} at (0,0) size 9x17
    192                         RenderText {mo} at (0,-7) size 9x29
    193                           text run at (0,-7) width 9: "{"
    194                     RenderInline {mi} at (0,0) size 7x24
    195                       RenderText {#text} at (10,-4) size 7x24
    196                         text run at (10,-4) width 7: "x"
    197                     RenderMathMLOperator {mo} at (17,0) size 10x17 [padding: 0 1 0 0]
    198                       RenderMathMLBlock (inline-block) {mo} at (0,0) size 9x17
    199                         RenderText {mo} at (0,-7) size 9x29
    200                           text run at (0,-7) width 9: "}"
    201                   RenderMathMLOperator {mo} at (27,34) size 12x10 [padding: 0 1 0 0]
    202                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    203                       RenderText {mo} at (0,-8) size 11x24
    204                         text run at (0,-8) width 11: "+"
    205                   RenderMathMLFenced {mfenced} at (39,26) size 28x35 [padding: 0 1 0 1]
     184      RenderTable {TABLE} at (0,232) size 121x91
     185        RenderTableSection {TBODY} at (0,0) size 121x91
     186          RenderTableRow {TR} at (0,2) size 121x87
     187            RenderTableCell {TD} at (2,2) size 117x87 [border: (3px solid #000000)] [r=0 c=0 rs=1 cs=1]
     188              RenderMathMLMath {math} at (4,4) size 109x79 [padding: 0 1 0 1]
     189                RenderMathMLRow {mrow} at (1,0) size 107x79
     190                  RenderMathMLRow {mrow} at (0,32) size 25x14
     191                    RenderMathMLOperator {mo} at (0,0) size 9x14 [padding: 0 1 0 0]
     192                      RenderMathMLBlock (flex) {mo} at (0,0) size 8x14
     193                        RenderBlock (anonymous) at (0,0) size 8x14
     194                          RenderText {mo} at (0,-6) size 8x24
     195                            text run at (0,-6) width 8: "{"
     196                    RenderBlock {mi} at (9,3) size 7x9
     197                      RenderText {#text} at (0,-9) size 7x24
     198                        text run at (0,-9) width 7: "x"
     199                    RenderMathMLOperator {mo} at (16,0) size 9x14 [padding: 0 1 0 0]
     200                      RenderMathMLBlock (flex) {mo} at (0,0) size 8x14
     201                        RenderBlock (anonymous) at (0,0) size 8x14
     202                          RenderText {mo} at (0,-6) size 8x24
     203                            text run at (0,-6) width 8: "}"
     204                  RenderMathMLOperator {mo} at (25,34) size 12x10 [padding: 0 1 0 0]
     205                    RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     206                      RenderBlock (anonymous) at (0,0) size 11x10
     207                        RenderText {mo} at (0,-8) size 11x24
     208                          text run at (0,-8) width 11: "+"
     209                  RenderMathMLFenced {mfenced} at (37,26) size 28x35 [padding: 0 1 0 1]
    206210                    RenderMathMLOperator {mfenced} at (1,0) size 6x35 [padding: 0 1 0 0]
    207211                    RenderMathMLFraction {mfrac} at (7,0) size 14x26
    208                       RenderMathMLBlock (anonymous, block) at (0,0) size 14x12 [padding: 0 3 0 3]
    209                         RenderInline {mn} at (0,0) size 8x24
    210                           RenderText {#text} at (3,-6) size 8x24
    211                             text run at (3,-6) width 8: "1"
    212                       RenderMathMLBlock (anonymous, block) at (0,12) size 14x14 [padding: 2 3 0 3]
    213                         RenderInline {mi} at (0,0) size 8x24
    214                           RenderText {#text} at (3,-7) size 8x24
    215                             text run at (3,-7) width 8: "y"
     212                      RenderMathMLBlock (anonymous, flex) at (0,0) size 14x12 [padding: 0 3 0 3]
     213                        RenderBlock {mn} at (3,0) size 8x12
     214                          RenderText {#text} at (0,-6) size 8x24
     215                            text run at (0,-6) width 8: "1"
     216                      RenderMathMLBlock (anonymous, flex) at (0,12) size 14x14 [padding: 2 3 0 3]
     217                        RenderBlock {mi} at (3,2) size 7x12
     218                          RenderText {#text} at (0,-9) size 7x24
     219                            text run at (0,-9) width 7: "y"
    216220                    RenderMathMLOperator {mfenced} at (21,0) size 6x35 [padding: 0 1 0 0]
    217                   RenderMathMLOperator {mo} at (67,34) size 12x10 [padding: 0 1 0 0]
    218                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    219                       RenderText {mo} at (0,-8) size 11x24
    220                         text run at (0,-8) width 11: "+"
    221                   RenderMathMLRow {mrow} at (79,0) size 30x79
     221                  RenderMathMLOperator {mo} at (65,34) size 12x10 [padding: 0 1 0 0]
     222                    RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     223                      RenderBlock (anonymous) at (0,0) size 11x10
     224                        RenderText {mo} at (0,-8) size 11x24
     225                          text run at (0,-8) width 11: "+"
     226                  RenderMathMLRow {mrow} at (77,0) size 30x79
    222227                    RenderMathMLOperator {mo} at (0,0) size 6x79 [padding: 0 1 0 0]
    223                     RenderTable {mtable} at (6,9) size 18x62
     228                    RenderMathMLTable {mtable} at (6,9) size 18x62
    224229                      RenderTableSection (anonymous) at (0,0) size 18x62
    225230                        RenderTableRow {mtr} at (0,2) size 18x18
     
    239244                                text run at (3,-3) width 8: "3"
    240245                    RenderMathMLOperator {mo} at (24,0) size 6x79 [padding: 0 1 0 0]
    241 layer at (319,8) size 5x10 scrollHeight 18
    242   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    243 layer at (319,18) size 5x10 scrollHeight 17
    244   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    245     RenderText {mo} at (0,-4) size 5x21
    246       text run at (0,-4) width 5: "\x{239C}"
    247 layer at (319,28) size 5x10 scrollHeight 17
    248   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    249     RenderText {mo} at (0,-4) size 5x21
    250       text run at (0,-4) width 5: "\x{239C}"
    251 layer at (319,38) size 5x10 scrollHeight 17
    252   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    253     RenderText {mo} at (0,-4) size 5x21
    254       text run at (0,-4) width 5: "\x{239C}"
    255 layer at (319,48) size 5x7 scrollHeight 17
    256   RenderMathMLBlock (block) {mo} at (0,40) size 5x7
    257     RenderText {mo} at (0,-4) size 5x21
    258       text run at (0,-4) width 5: "\x{239C}"
    259 layer at (319,55) size 5x14 scrollHeight 17
    260   RenderMathMLBlock (block) {mo} at (0,47) size 5x14
    261 layer at (364,8) size 5x10 scrollHeight 18
    262   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    263 layer at (364,18) size 5x10 scrollHeight 17
    264   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    265     RenderText {mo} at (0,-4) size 5x21
    266       text run at (0,-4) width 5: "\x{239F}"
    267 layer at (364,28) size 5x10 scrollHeight 17
    268   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    269     RenderText {mo} at (0,-4) size 5x21
    270       text run at (0,-4) width 5: "\x{239F}"
    271 layer at (364,38) size 5x10 scrollHeight 17
    272   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    273     RenderText {mo} at (0,-4) size 5x21
    274       text run at (0,-4) width 5: "\x{239F}"
    275 layer at (364,48) size 5x7 scrollHeight 17
    276   RenderMathMLBlock (block) {mo} at (0,40) size 5x7
    277     RenderText {mo} at (0,-4) size 5x21
    278       text run at (0,-4) width 5: "\x{239F}"
    279 layer at (364,55) size 5x14 scrollHeight 17
    280   RenderMathMLBlock (block) {mo} at (0,47) size 5x14
    281 layer at (391,15) size 5x10 scrollHeight 18
    282   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    283 layer at (391,25) size 5x10 scrollHeight 17
    284   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    285     RenderText {mo} at (0,-4) size 5x21
    286       text run at (0,-4) width 5: "\x{23A2}"
    287 layer at (391,35) size 5x10 scrollHeight 17
    288   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    289     RenderText {mo} at (0,-4) size 5x21
    290       text run at (0,-4) width 5: "\x{23A2}"
    291 layer at (391,45) size 5x5 scrollHeight 17
    292   RenderMathMLBlock (block) {mo} at (0,30) size 5x5
    293     RenderText {mo} at (0,-4) size 5x21
    294       text run at (0,-4) width 5: "\x{23A2}"
    295 layer at (391,50) size 5x15 scrollHeight 17
    296   RenderMathMLBlock (block) {mo} at (0,35) size 5x15
    297 layer at (430,15) size 5x10 scrollHeight 18
    298   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    299 layer at (430,25) size 5x10 scrollHeight 17
    300   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    301     RenderText {mo} at (0,-4) size 5x21
    302       text run at (0,-4) width 5: "\x{23A5}"
    303 layer at (430,35) size 5x10 scrollHeight 17
    304   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    305     RenderText {mo} at (0,-4) size 5x21
    306       text run at (0,-4) width 5: "\x{23A5}"
    307 layer at (430,45) size 5x5 scrollHeight 17
    308   RenderMathMLBlock (block) {mo} at (0,30) size 5x5
    309     RenderText {mo} at (0,-4) size 5x21
    310       text run at (0,-4) width 5: "\x{23A5}"
    311 layer at (430,50) size 5x15 scrollHeight 17
    312   RenderMathMLBlock (block) {mo} at (0,35) size 5x15
    313 layer at (448,16) size 10x10 scrollHeight 18
    314   RenderMathMLBlock (block) {mo} at (0,0) size 10x10
    315 layer at (448,26) size 10x10 scrollHeight 17
    316   RenderMathMLBlock (block) {mo} at (0,10) size 10x10
    317     RenderText {mo} at (0,-4) size 10x21
    318       text run at (0,-4) width 10: "\x{23AE}"
    319 layer at (448,36) size 10x10 scrollHeight 17
    320   RenderMathMLBlock (block) {mo} at (0,20) size 10x10
    321     RenderText {mo} at (0,-4) size 10x21
    322       text run at (0,-4) width 10: "\x{23AE}"
    323 layer at (448,46) size 10x2 scrollHeight 17
    324   RenderMathMLBlock (block) {mo} at (0,30) size 10x2
    325     RenderText {mo} at (0,-4) size 10x21
    326       text run at (0,-4) width 10: "\x{23AE}"
    327 layer at (448,48) size 10x15 scrollHeight 17
    328   RenderMathMLBlock (block) {mo} at (0,32) size 10x15
     246layer at (318,8) size 5x10 scrollHeight 18
     247  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     248    RenderBlock (anonymous) at (0,0) size 5x10
     249layer at (318,18) size 5x10 scrollHeight 17
     250  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     251    RenderBlock (anonymous) at (0,0) size 5x10
     252      RenderText {mo} at (0,-4) size 5x21
     253        text run at (0,-4) width 5: "\x{239C}"
     254layer at (318,28) size 5x10 scrollHeight 17
     255  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     256    RenderBlock (anonymous) at (0,0) size 5x10
     257      RenderText {mo} at (0,-4) size 5x21
     258        text run at (0,-4) width 5: "\x{239C}"
     259layer at (318,38) size 5x10 scrollHeight 17
     260  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     261    RenderBlock (anonymous) at (0,0) size 5x10
     262      RenderText {mo} at (0,-4) size 5x21
     263        text run at (0,-4) width 5: "\x{239C}"
     264layer at (318,48) size 5x7 scrollHeight 17
     265  RenderMathMLBlock (flex) {mo} at (0,40) size 5x7
     266    RenderBlock (anonymous) at (0,0) size 5x7
     267      RenderText {mo} at (0,-4) size 5x21
     268        text run at (0,-4) width 5: "\x{239C}"
     269layer at (318,55) size 5x14 scrollHeight 17
     270  RenderMathMLBlock (flex) {mo} at (0,47) size 5x14
     271    RenderBlock (anonymous) at (0,0) size 5x14
     272layer at (363,8) size 5x10 scrollHeight 18
     273  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     274    RenderBlock (anonymous) at (0,0) size 5x10
     275layer at (363,18) size 5x10 scrollHeight 17
     276  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     277    RenderBlock (anonymous) at (0,0) size 5x10
     278      RenderText {mo} at (0,-4) size 5x21
     279        text run at (0,-4) width 5: "\x{239F}"
     280layer at (363,28) size 5x10 scrollHeight 17
     281  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     282    RenderBlock (anonymous) at (0,0) size 5x10
     283      RenderText {mo} at (0,-4) size 5x21
     284        text run at (0,-4) width 5: "\x{239F}"
     285layer at (363,38) size 5x10 scrollHeight 17
     286  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     287    RenderBlock (anonymous) at (0,0) size 5x10
     288      RenderText {mo} at (0,-4) size 5x21
     289        text run at (0,-4) width 5: "\x{239F}"
     290layer at (363,48) size 5x7 scrollHeight 17
     291  RenderMathMLBlock (flex) {mo} at (0,40) size 5x7
     292    RenderBlock (anonymous) at (0,0) size 5x7
     293      RenderText {mo} at (0,-4) size 5x21
     294        text run at (0,-4) width 5: "\x{239F}"
     295layer at (363,55) size 5x14 scrollHeight 17
     296  RenderMathMLBlock (flex) {mo} at (0,47) size 5x14
     297    RenderBlock (anonymous) at (0,0) size 5x14
     298layer at (390,15) size 5x10 scrollHeight 18
     299  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     300    RenderBlock (anonymous) at (0,0) size 5x10
     301layer at (390,25) size 5x10 scrollHeight 17
     302  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     303    RenderBlock (anonymous) at (0,0) size 5x10
     304      RenderText {mo} at (0,-4) size 5x21
     305        text run at (0,-4) width 5: "\x{23A2}"
     306layer at (390,35) size 5x10 scrollHeight 17
     307  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     308    RenderBlock (anonymous) at (0,0) size 5x10
     309      RenderText {mo} at (0,-4) size 5x21
     310        text run at (0,-4) width 5: "\x{23A2}"
     311layer at (390,45) size 5x5 scrollHeight 17
     312  RenderMathMLBlock (flex) {mo} at (0,30) size 5x5
     313    RenderBlock (anonymous) at (0,0) size 5x5
     314      RenderText {mo} at (0,-4) size 5x21
     315        text run at (0,-4) width 5: "\x{23A2}"
     316layer at (390,50) size 5x15 scrollHeight 17
     317  RenderMathMLBlock (flex) {mo} at (0,35) size 5x15
     318    RenderBlock (anonymous) at (0,0) size 5x15
     319layer at (429,15) size 5x10 scrollHeight 18
     320  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     321    RenderBlock (anonymous) at (0,0) size 5x10
     322layer at (429,25) size 5x10 scrollHeight 17
     323  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     324    RenderBlock (anonymous) at (0,0) size 5x10
     325      RenderText {mo} at (0,-4) size 5x21
     326        text run at (0,-4) width 5: "\x{23A5}"
     327layer at (429,35) size 5x10 scrollHeight 17
     328  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     329    RenderBlock (anonymous) at (0,0) size 5x10
     330      RenderText {mo} at (0,-4) size 5x21
     331        text run at (0,-4) width 5: "\x{23A5}"
     332layer at (429,45) size 5x5 scrollHeight 17
     333  RenderMathMLBlock (flex) {mo} at (0,30) size 5x5
     334    RenderBlock (anonymous) at (0,0) size 5x5
     335      RenderText {mo} at (0,-4) size 5x21
     336        text run at (0,-4) width 5: "\x{23A5}"
     337layer at (429,50) size 5x15 scrollHeight 17
     338  RenderMathMLBlock (flex) {mo} at (0,35) size 5x15
     339    RenderBlock (anonymous) at (0,0) size 5x15
     340layer at (447,16) size 10x10 scrollHeight 18
     341  RenderMathMLBlock (flex) {mo} at (0,0) size 10x10
     342    RenderBlock (anonymous) at (0,0) size 10x10
     343layer at (447,26) size 10x10 scrollHeight 17
     344  RenderMathMLBlock (flex) {mo} at (0,10) size 10x10
     345    RenderBlock (anonymous) at (0,0) size 10x10
     346      RenderText {mo} at (0,-4) size 10x21
     347        text run at (0,-4) width 10: "\x{23AE}"
     348layer at (447,36) size 10x10 scrollHeight 17
     349  RenderMathMLBlock (flex) {mo} at (0,20) size 10x10
     350    RenderBlock (anonymous) at (0,0) size 10x10
     351      RenderText {mo} at (0,-4) size 10x21
     352        text run at (0,-4) width 10: "\x{23AE}"
     353layer at (447,46) size 10x2 scrollHeight 17
     354  RenderMathMLBlock (flex) {mo} at (0,30) size 10x2
     355    RenderBlock (anonymous) at (0,0) size 10x2
     356      RenderText {mo} at (0,-4) size 10x21
     357        text run at (0,-4) width 10: "\x{23AE}"
     358layer at (447,48) size 10x15 scrollHeight 17
     359  RenderMathMLBlock (flex) {mo} at (0,32) size 10x15
     360    RenderBlock (anonymous) at (0,0) size 10x15
    329361layer at (396,122) size 5x10 scrollHeight 18
    330   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
     362  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     363    RenderBlock (anonymous) at (0,0) size 5x10
    331364layer at (396,132) size 5x10 scrollHeight 17
    332   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    333     RenderText {mo} at (0,-4) size 5x21
    334       text run at (0,-4) width 5: "\x{239C}"
     365  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     366    RenderBlock (anonymous) at (0,0) size 5x10
     367      RenderText {mo} at (0,-4) size 5x21
     368        text run at (0,-4) width 5: "\x{239C}"
    335369layer at (396,142) size 5x1 scrollHeight 17
    336   RenderMathMLBlock (block) {mo} at (0,20) size 5x1
    337     RenderText {mo} at (0,-4) size 5x21
    338       text run at (0,-4) width 5: "\x{239C}"
     370  RenderMathMLBlock (flex) {mo} at (0,20) size 5x1
     371    RenderBlock (anonymous) at (0,0) size 5x1
     372      RenderText {mo} at (0,-4) size 5x21
     373        text run at (0,-4) width 5: "\x{239C}"
    339374layer at (396,143) size 5x14 scrollHeight 17
    340   RenderMathMLBlock (block) {mo} at (0,21) size 5x14
     375  RenderMathMLBlock (flex) {mo} at (0,21) size 5x14
     376    RenderBlock (anonymous) at (0,0) size 5x14
    341377layer at (415,122) size 5x10 scrollHeight 18
    342   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
     378  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     379    RenderBlock (anonymous) at (0,0) size 5x10
    343380layer at (415,132) size 5x10 scrollHeight 17
    344   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    345     RenderText {mo} at (0,-4) size 5x21
    346       text run at (0,-4) width 5: "\x{239F}"
     381  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     382    RenderBlock (anonymous) at (0,0) size 5x10
     383      RenderText {mo} at (0,-4) size 5x21
     384        text run at (0,-4) width 5: "\x{239F}"
    347385layer at (415,142) size 5x1 scrollHeight 17
    348   RenderMathMLBlock (block) {mo} at (0,20) size 5x1
    349     RenderText {mo} at (0,-4) size 5x21
    350       text run at (0,-4) width 5: "\x{239F}"
     386  RenderMathMLBlock (flex) {mo} at (0,20) size 5x1
     387    RenderBlock (anonymous) at (0,0) size 5x1
     388      RenderText {mo} at (0,-4) size 5x21
     389        text run at (0,-4) width 5: "\x{239F}"
    351390layer at (415,143) size 5x14 scrollHeight 17
    352   RenderMathMLBlock (block) {mo} at (0,21) size 5x14
    353 layer at (55,272) size 5x10 scrollHeight 18
    354   RenderMathMLBlock (block) {mfenced} at (0,0) size 5x10
    355 layer at (55,282) size 5x10 scrollHeight 17
    356   RenderMathMLBlock (block) {mfenced} at (0,10) size 5x10
    357     RenderText {mfenced} at (0,-4) size 5x21
    358       text run at (0,-4) width 5: "\x{239C}"
    359 layer at (55,292) size 5x1 scrollHeight 17
    360   RenderMathMLBlock (block) {mfenced} at (0,20) size 5x1
    361     RenderText {mfenced} at (0,-4) size 5x21
    362       text run at (0,-4) width 5: "\x{239C}"
    363 layer at (55,293) size 5x14 scrollHeight 17
    364   RenderMathMLBlock (block) {mfenced} at (0,21) size 5x14
    365 layer at (75,272) size 5x10 scrollHeight 18
    366   RenderMathMLBlock (block) {mfenced} at (0,0) size 5x10
    367 layer at (75,282) size 5x10 scrollHeight 17
    368   RenderMathMLBlock (block) {mfenced} at (0,10) size 5x10
    369     RenderText {mfenced} at (0,-4) size 5x21
    370       text run at (0,-4) width 5: "\x{239F}"
    371 layer at (75,292) size 5x1 scrollHeight 17
    372   RenderMathMLBlock (block) {mfenced} at (0,20) size 5x1
    373     RenderText {mfenced} at (0,-4) size 5x21
    374       text run at (0,-4) width 5: "\x{239F}"
    375 layer at (75,293) size 5x14 scrollHeight 17
    376   RenderMathMLBlock (block) {mfenced} at (0,21) size 5x14
    377 layer at (94,246) size 5x10 scrollHeight 18
    378   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    379 layer at (94,256) size 5x10 scrollHeight 17
    380   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    381     RenderText {mo} at (0,-4) size 5x21
    382       text run at (0,-4) width 5: "\x{23A2}"
    383 layer at (94,266) size 5x10 scrollHeight 17
    384   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    385     RenderText {mo} at (0,-4) size 5x21
    386       text run at (0,-4) width 5: "\x{23A2}"
    387 layer at (94,276) size 5x10 scrollHeight 17
    388   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    389     RenderText {mo} at (0,-4) size 5x21
    390       text run at (0,-4) width 5: "\x{23A2}"
    391 layer at (94,286) size 5x10 scrollHeight 17
    392   RenderMathMLBlock (block) {mo} at (0,40) size 5x10
    393     RenderText {mo} at (0,-4) size 5x21
    394       text run at (0,-4) width 5: "\x{23A2}"
    395 layer at (94,296) size 5x10 scrollHeight 17
    396   RenderMathMLBlock (block) {mo} at (0,50) size 5x10
    397     RenderText {mo} at (0,-4) size 5x21
    398       text run at (0,-4) width 5: "\x{23A2}"
    399 layer at (94,306) size 5x4 scrollHeight 17
    400   RenderMathMLBlock (block) {mo} at (0,60) size 5x4
    401     RenderText {mo} at (0,-4) size 5x21
    402       text run at (0,-4) width 5: "\x{23A2}"
    403 layer at (94,310) size 5x15 scrollHeight 17
    404   RenderMathMLBlock (block) {mo} at (0,64) size 5x15
    405 layer at (118,246) size 5x10 scrollHeight 18
    406   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    407 layer at (118,256) size 5x10 scrollHeight 17
    408   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    409     RenderText {mo} at (0,-4) size 5x21
    410       text run at (0,-4) width 5: "\x{23A5}"
    411 layer at (118,266) size 5x10 scrollHeight 17
    412   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    413     RenderText {mo} at (0,-4) size 5x21
    414       text run at (0,-4) width 5: "\x{23A5}"
    415 layer at (118,276) size 5x10 scrollHeight 17
    416   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    417     RenderText {mo} at (0,-4) size 5x21
    418       text run at (0,-4) width 5: "\x{23A5}"
    419 layer at (118,286) size 5x10 scrollHeight 17
    420   RenderMathMLBlock (block) {mo} at (0,40) size 5x10
    421     RenderText {mo} at (0,-4) size 5x21
    422       text run at (0,-4) width 5: "\x{23A5}"
    423 layer at (118,296) size 5x10 scrollHeight 17
    424   RenderMathMLBlock (block) {mo} at (0,50) size 5x10
    425     RenderText {mo} at (0,-4) size 5x21
    426       text run at (0,-4) width 5: "\x{23A5}"
    427 layer at (118,306) size 5x4 scrollHeight 17
    428   RenderMathMLBlock (block) {mo} at (0,60) size 5x4
    429     RenderText {mo} at (0,-4) size 5x21
    430       text run at (0,-4) width 5: "\x{23A5}"
    431 layer at (118,310) size 5x15 scrollHeight 17
    432   RenderMathMLBlock (block) {mo} at (0,64) size 5x15
    433 layer at (319,9) size 5x15 backgroundClip at (319,8) size 5x10 clip at (319,8) size 5x10 outlineClip at (319,8) size 5x10
     391  RenderMathMLBlock (flex) {mo} at (0,21) size 5x14
     392    RenderBlock (anonymous) at (0,0) size 5x14
     393layer at (53,272) size 5x10 scrollHeight 18
     394  RenderMathMLBlock (flex) {mfenced} at (0,0) size 5x10
     395    RenderBlock (anonymous) at (0,0) size 5x10
     396layer at (53,282) size 5x10 scrollHeight 17
     397  RenderMathMLBlock (flex) {mfenced} at (0,10) size 5x10
     398    RenderBlock (anonymous) at (0,0) size 5x10
     399      RenderText {mfenced} at (0,-4) size 5x21
     400        text run at (0,-4) width 5: "\x{239C}"
     401layer at (53,292) size 5x1 scrollHeight 17
     402  RenderMathMLBlock (flex) {mfenced} at (0,20) size 5x1
     403    RenderBlock (anonymous) at (0,0) size 5x1
     404      RenderText {mfenced} at (0,-4) size 5x21
     405        text run at (0,-4) width 5: "\x{239C}"
     406layer at (53,293) size 5x14 scrollHeight 17
     407  RenderMathMLBlock (flex) {mfenced} at (0,21) size 5x14
     408    RenderBlock (anonymous) at (0,0) size 5x14
     409layer at (73,272) size 5x10 scrollHeight 18
     410  RenderMathMLBlock (flex) {mfenced} at (0,0) size 5x10
     411    RenderBlock (anonymous) at (0,0) size 5x10
     412layer at (73,282) size 5x10 scrollHeight 17
     413  RenderMathMLBlock (flex) {mfenced} at (0,10) size 5x10
     414    RenderBlock (anonymous) at (0,0) size 5x10
     415      RenderText {mfenced} at (0,-4) size 5x21
     416        text run at (0,-4) width 5: "\x{239F}"
     417layer at (73,292) size 5x1 scrollHeight 17
     418  RenderMathMLBlock (flex) {mfenced} at (0,20) size 5x1
     419    RenderBlock (anonymous) at (0,0) size 5x1
     420      RenderText {mfenced} at (0,-4) size 5x21
     421        text run at (0,-4) width 5: "\x{239F}"
     422layer at (73,293) size 5x14 scrollHeight 17
     423  RenderMathMLBlock (flex) {mfenced} at (0,21) size 5x14
     424    RenderBlock (anonymous) at (0,0) size 5x14
     425layer at (92,246) size 5x10 scrollHeight 18
     426  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     427    RenderBlock (anonymous) at (0,0) size 5x10
     428layer at (92,256) size 5x10 scrollHeight 17
     429  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     430    RenderBlock (anonymous) at (0,0) size 5x10
     431      RenderText {mo} at (0,-4) size 5x21
     432        text run at (0,-4) width 5: "\x{23A2}"
     433layer at (92,266) size 5x10 scrollHeight 17
     434  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     435    RenderBlock (anonymous) at (0,0) size 5x10
     436      RenderText {mo} at (0,-4) size 5x21
     437        text run at (0,-4) width 5: "\x{23A2}"
     438layer at (92,276) size 5x10 scrollHeight 17
     439  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     440    RenderBlock (anonymous) at (0,0) size 5x10
     441      RenderText {mo} at (0,-4) size 5x21
     442        text run at (0,-4) width 5: "\x{23A2}"
     443layer at (92,286) size 5x10 scrollHeight 17
     444  RenderMathMLBlock (flex) {mo} at (0,40) size 5x10
     445    RenderBlock (anonymous) at (0,0) size 5x10
     446      RenderText {mo} at (0,-4) size 5x21
     447        text run at (0,-4) width 5: "\x{23A2}"
     448layer at (92,296) size 5x10 scrollHeight 17
     449  RenderMathMLBlock (flex) {mo} at (0,50) size 5x10
     450    RenderBlock (anonymous) at (0,0) size 5x10
     451      RenderText {mo} at (0,-4) size 5x21
     452        text run at (0,-4) width 5: "\x{23A2}"
     453layer at (92,306) size 5x4 scrollHeight 17
     454  RenderMathMLBlock (flex) {mo} at (0,60) size 5x4
     455    RenderBlock (anonymous) at (0,0) size 5x4
     456      RenderText {mo} at (0,-4) size 5x21
     457        text run at (0,-4) width 5: "\x{23A2}"
     458layer at (92,310) size 5x15 scrollHeight 17
     459  RenderMathMLBlock (flex) {mo} at (0,64) size 5x15
     460    RenderBlock (anonymous) at (0,0) size 5x15
     461layer at (116,246) size 5x10 scrollHeight 18
     462  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     463    RenderBlock (anonymous) at (0,0) size 5x10
     464layer at (116,256) size 5x10 scrollHeight 17
     465  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     466    RenderBlock (anonymous) at (0,0) size 5x10
     467      RenderText {mo} at (0,-4) size 5x21
     468        text run at (0,-4) width 5: "\x{23A5}"
     469layer at (116,266) size 5x10 scrollHeight 17
     470  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     471    RenderBlock (anonymous) at (0,0) size 5x10
     472      RenderText {mo} at (0,-4) size 5x21
     473        text run at (0,-4) width 5: "\x{23A5}"
     474layer at (116,276) size 5x10 scrollHeight 17
     475  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     476    RenderBlock (anonymous) at (0,0) size 5x10
     477      RenderText {mo} at (0,-4) size 5x21
     478        text run at (0,-4) width 5: "\x{23A5}"
     479layer at (116,286) size 5x10 scrollHeight 17
     480  RenderMathMLBlock (flex) {mo} at (0,40) size 5x10
     481    RenderBlock (anonymous) at (0,0) size 5x10
     482      RenderText {mo} at (0,-4) size 5x21
     483        text run at (0,-4) width 5: "\x{23A5}"
     484layer at (116,296) size 5x10 scrollHeight 17
     485  RenderMathMLBlock (flex) {mo} at (0,50) size 5x10
     486    RenderBlock (anonymous) at (0,0) size 5x10
     487      RenderText {mo} at (0,-4) size 5x21
     488        text run at (0,-4) width 5: "\x{23A5}"
     489layer at (116,306) size 5x4 scrollHeight 17
     490  RenderMathMLBlock (flex) {mo} at (0,60) size 5x4
     491    RenderBlock (anonymous) at (0,0) size 5x4
     492      RenderText {mo} at (0,-4) size 5x21
     493        text run at (0,-4) width 5: "\x{23A5}"
     494layer at (116,310) size 5x15 scrollHeight 17
     495  RenderMathMLBlock (flex) {mo} at (0,64) size 5x15
     496    RenderBlock (anonymous) at (0,0) size 5x15
     497layer at (318,9) size 5x15 backgroundClip at (318,8) size 5x10 clip at (318,8) size 5x10 outlineClip at (318,8) size 5x10
    434498  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    435499    RenderText {mo} at (0,-4) size 5x21
    436500      text run at (0,-4) width 5: "\x{239B}"
    437 layer at (319,52) size 5x14 backgroundClip at (319,55) size 5x14 clip at (319,55) size 5x14 outlineClip at (319,55) size 5x14
     501layer at (318,52) size 5x14 backgroundClip at (318,55) size 5x14 clip at (318,55) size 5x14 outlineClip at (318,55) size 5x14
    438502  RenderBlock (relative positioned) {mo} at (0,0) size 5x14
    439503    RenderText {mo} at (0,-4) size 5x21
    440504      text run at (0,-4) width 5: "\x{239D}"
    441 layer at (364,9) size 5x15 backgroundClip at (364,8) size 5x10 clip at (364,8) size 5x10 outlineClip at (364,8) size 5x10
     505layer at (363,9) size 5x15 backgroundClip at (363,8) size 5x10 clip at (363,8) size 5x10 outlineClip at (363,8) size 5x10
    442506  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    443507    RenderText {mo} at (0,-4) size 5x21
    444508      text run at (0,-4) width 5: "\x{239E}"
    445 layer at (364,52) size 5x14 backgroundClip at (364,55) size 5x14 clip at (364,55) size 5x14 outlineClip at (364,55) size 5x14
     509layer at (363,52) size 5x14 backgroundClip at (363,55) size 5x14 clip at (363,55) size 5x14 outlineClip at (363,55) size 5x14
    446510  RenderBlock (relative positioned) {mo} at (0,0) size 5x14
    447511    RenderText {mo} at (0,-4) size 5x21
    448512      text run at (0,-4) width 5: "\x{23A0}"
    449 layer at (391,16) size 5x15 backgroundClip at (391,15) size 5x10 clip at (391,15) size 5x10 outlineClip at (391,15) size 5x10
     513layer at (390,16) size 5x15 backgroundClip at (390,15) size 5x10 clip at (390,15) size 5x10 outlineClip at (390,15) size 5x10
    450514  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    451515    RenderText {mo} at (0,-4) size 5x21
    452516      text run at (0,-4) width 5: "\x{23A1}"
    453 layer at (391,47) size 5x15 backgroundClip at (391,50) size 5x15 clip at (391,50) size 5x15 outlineClip at (391,50) size 5x15
     517layer at (390,47) size 5x15 backgroundClip at (390,50) size 5x15 clip at (390,50) size 5x15 outlineClip at (390,50) size 5x15
    454518  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    455519    RenderText {mo} at (0,-4) size 5x21
    456520      text run at (0,-4) width 5: "\x{23A3}"
    457 layer at (430,16) size 5x15 backgroundClip at (430,15) size 5x10 clip at (430,15) size 5x10 outlineClip at (430,15) size 5x10
     521layer at (429,16) size 5x15 backgroundClip at (429,15) size 5x10 clip at (429,15) size 5x10 outlineClip at (429,15) size 5x10
    458522  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    459523    RenderText {mo} at (0,-4) size 5x21
    460524      text run at (0,-4) width 5: "\x{23A4}"
    461 layer at (430,47) size 5x15 backgroundClip at (430,50) size 5x15 clip at (430,50) size 5x15 outlineClip at (430,50) size 5x15
     525layer at (429,47) size 5x15 backgroundClip at (429,50) size 5x15 clip at (429,50) size 5x15 outlineClip at (429,50) size 5x15
    462526  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    463527    RenderText {mo} at (0,-4) size 5x21
    464528      text run at (0,-4) width 5: "\x{23A6}"
    465 layer at (448,17) size 10x15 backgroundClip at (448,16) size 10x10 clip at (448,16) size 10x10 outlineClip at (448,16) size 10x10
     529layer at (447,17) size 10x15 backgroundClip at (447,16) size 10x10 clip at (447,16) size 10x10 outlineClip at (447,16) size 10x10
    466530  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
    467531    RenderText {mo} at (0,-4) size 10x21
    468532      text run at (0,-4) width 10: "\x{2320}"
    469 layer at (448,45) size 10x15 backgroundClip at (448,48) size 10x15 clip at (448,48) size 10x15 outlineClip at (448,48) size 10x15
     533layer at (447,45) size 10x15 backgroundClip at (447,48) size 10x15 clip at (447,48) size 10x15 outlineClip at (447,48) size 10x15
    470534  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
    471535    RenderText {mo} at (0,-4) size 10x21
     
    487551    RenderText {mo} at (0,-4) size 5x21
    488552      text run at (0,-4) width 5: "\x{23A0}"
    489 layer at (55,273) size 5x15 backgroundClip at (55,272) size 5x10 clip at (55,272) size 5x10 outlineClip at (55,272) size 5x10
     553layer at (53,273) size 5x15 backgroundClip at (53,272) size 5x10 clip at (53,272) size 5x10 outlineClip at (53,272) size 5x10
    490554  RenderBlock (relative positioned) {mfenced} at (0,0) size 5x15
    491555    RenderText {mfenced} at (0,-4) size 5x21
    492556      text run at (0,-4) width 5: "\x{239B}"
    493 layer at (55,290) size 5x14 backgroundClip at (55,293) size 5x14 clip at (55,293) size 5x14 outlineClip at (55,293) size 5x14
     557layer at (53,290) size 5x14 backgroundClip at (53,293) size 5x14 clip at (53,293) size 5x14 outlineClip at (53,293) size 5x14
    494558  RenderBlock (relative positioned) {mfenced} at (0,0) size 5x14
    495559    RenderText {mfenced} at (0,-4) size 5x21
    496560      text run at (0,-4) width 5: "\x{239D}"
    497 layer at (75,273) size 5x15 backgroundClip at (75,272) size 5x10 clip at (75,272) size 5x10 outlineClip at (75,272) size 5x10
     561layer at (73,273) size 5x15 backgroundClip at (73,272) size 5x10 clip at (73,272) size 5x10 outlineClip at (73,272) size 5x10
    498562  RenderBlock (relative positioned) {mfenced} at (0,0) size 5x15
    499563    RenderText {mfenced} at (0,-4) size 5x21
    500564      text run at (0,-4) width 5: "\x{239E}"
    501 layer at (75,290) size 5x14 backgroundClip at (75,293) size 5x14 clip at (75,293) size 5x14 outlineClip at (75,293) size 5x14
     565layer at (73,290) size 5x14 backgroundClip at (73,293) size 5x14 clip at (73,293) size 5x14 outlineClip at (73,293) size 5x14
    502566  RenderBlock (relative positioned) {mfenced} at (0,0) size 5x14
    503567    RenderText {mfenced} at (0,-4) size 5x21
    504568      text run at (0,-4) width 5: "\x{23A0}"
    505 layer at (94,247) size 5x15 backgroundClip at (94,246) size 5x10 clip at (94,246) size 5x10 outlineClip at (94,246) size 5x10
     569layer at (92,247) size 5x15 backgroundClip at (92,246) size 5x10 clip at (92,246) size 5x10 outlineClip at (92,246) size 5x10
    506570  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    507571    RenderText {mo} at (0,-4) size 5x21
    508572      text run at (0,-4) width 5: "\x{23A1}"
    509 layer at (94,307) size 5x15 backgroundClip at (94,310) size 5x15 clip at (94,310) size 5x15 outlineClip at (94,310) size 5x15
     573layer at (92,307) size 5x15 backgroundClip at (92,310) size 5x15 clip at (92,310) size 5x15 outlineClip at (92,310) size 5x15
    510574  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    511575    RenderText {mo} at (0,-4) size 5x21
    512576      text run at (0,-4) width 5: "\x{23A3}"
    513 layer at (118,247) size 5x15 backgroundClip at (118,246) size 5x10 clip at (118,246) size 5x10 outlineClip at (118,246) size 5x10
     577layer at (116,247) size 5x15 backgroundClip at (116,246) size 5x10 clip at (116,246) size 5x10 outlineClip at (116,246) size 5x10
    514578  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    515579    RenderText {mo} at (0,-4) size 5x21
    516580      text run at (0,-4) width 5: "\x{23A4}"
    517 layer at (118,307) size 5x15 backgroundClip at (118,310) size 5x15 clip at (118,310) size 5x15 outlineClip at (118,310) size 5x15
     581layer at (116,307) size 5x15 backgroundClip at (116,310) size 5x15 clip at (116,310) size 5x15 outlineClip at (116,310) size 5x15
    518582  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    519583    RenderText {mo} at (0,-4) size 5x21
  • trunk/LayoutTests/platform/mac/mathml/presentation/mroot-pref-width-expected.txt

    r124512 r128837  
    99      RenderBlock (anonymous) at (0,34) size 784x29
    1010        RenderMathMLMath {math} at (0,0) size 87x29 [padding: 0 1 0 1]
    11           RenderTable {mtable} at (1,0) size 85x29
     11          RenderMathMLTable {mtable} at (1,0) size 85x29
    1212            RenderTableSection (anonymous) at (0,0) size 85x29
    1313              RenderTableRow {mtr} at (0,0) size 85x29
     
    1818  RenderMathMLRoot {mroot} at (6,6) size 73x17 [intrinsic padding: 8 0 0 66]
    1919    RenderMathMLRow (anonymous) at (66,8) size 7x9
    20       RenderInline {mi} at (0,0) size 7x24
     20      RenderBlock {mi} at (0,0) size 7x9
    2121        RenderText {#text} at (0,-9) size 7x24
    2222          text run at (0,-9) width 7: "x"
  • trunk/LayoutTests/platform/mac/mathml/presentation/over-expected.txt

    r126160 r128837  
    99        RenderMathMLMath {math} at (36,0) size 12x19 [padding: 0 1 0 1]
    1010          RenderMathMLUnderOver {mover} at (1,0) size 10x19
    11             RenderMathMLBlock (anonymous, block) at (0,0) size 10x7
    12               RenderInline {mi} at (0,0) size 6x18
    13                 RenderText {#text} at (2,-7) size 6x18
    14                   text run at (2,-7) width 6: "x"
    15             RenderMathMLBlock (anonymous, block) at (0,7) size 10x12
    16               RenderInline {mi} at (0,0) size 10x24
    17                 RenderText {#text} at (0,-6) size 10x24
    18                   text run at (0,-6) width 10: "B"
     11            RenderBlock {mi} at (0,7) size 10x12
     12              RenderText {#text} at (0,-6) size 10x24
     13                text run at (0,-6) width 10: "B"
     14            RenderBlock {mi} at (2,0) size 5x7
     15              RenderText {#text} at (0,-7) size 5x18
     16                text run at (0,-7) width 5: "x"
    1917        RenderText {#text} at (0,0) size 0x0
    2018      RenderBlock {p} at (0,38) size 784x24
     
    2321        RenderMathMLMath {math} at (36,0) size 12x21 [padding: 0 1 0 1]
    2422          RenderMathMLUnderOver {mover} at (1,0) size 10x21
    25             RenderMathMLBlock (anonymous, block) at (0,0) size 10x9
    26               RenderInline {mi} at (0,0) size 6x18
    27                 RenderText {#text} at (2,-7) size 6x18
    28                   text run at (2,-7) width 6: "y"
    29             RenderMathMLBlock (anonymous, block) at (0,9) size 10x12
    30               RenderInline {mi} at (0,0) size 10x24
    31                 RenderText {#text} at (0,-6) size 10x24
    32                   text run at (0,-6) width 10: "B"
     23            RenderBlock {mi} at (0,9) size 10x12
     24              RenderText {#text} at (0,-6) size 10x24
     25                text run at (0,-6) width 10: "B"
     26            RenderBlock {mi} at (2,0) size 5x9
     27              RenderText {#text} at (0,-7) size 5x18
     28                text run at (0,-7) width 5: "y"
    3329        RenderText {#text} at (0,0) size 0x0
    3430      RenderBlock {p} at (0,78) size 784x29
     
    3733        RenderMathMLMath {math} at (36,0) size 17x26 [padding: 0 1 0 1]
    3834          RenderMathMLUnderOver {mover} at (1,0) size 15x26
    39             RenderMathMLBlock (anonymous, block) at (0,0) size 15x9
    40               RenderInline {mi} at (0,0) size 5x18
    41                 RenderText {#text} at (5,-7) size 5x18
    42                   text run at (5,-7) width 5: "y"
    43             RenderMathMLBlock (anonymous, block) at (0,9) size 15x17
    44               RenderInline {mi} at (0,0) size 15x36
    45                 RenderText {#text} at (0,-9) size 15x36
    46                   text run at (0,-9) width 15: "B"
     35            RenderBlock {mi} at (0,9) size 15x17
     36              RenderText {#text} at (0,-9) size 15x36
     37                text run at (0,-9) width 15: "B"
     38            RenderBlock {mi} at (5,0) size 5x9
     39              RenderText {#text} at (0,-7) size 5x18
     40                text run at (0,-7) width 5: "y"
    4741        RenderText {#text} at (0,0) size 0x0
    4842      RenderBlock {p} at (0,123) size 784x35
     
    5145        RenderMathMLMath {math} at (36,0) size 24x35 [padding: 0 1 0 1]
    5246          RenderMathMLUnderOver {mover} at (1,0) size 22x35
    53             RenderMathMLBlock (anonymous, block) at (0,0) size 22x9
    54               RenderInline {mi} at (0,0) size 6x18
    55                 RenderText {#text} at (8,-7) size 6x18
    56                   text run at (8,-7) width 6: "y"
    57             RenderMathMLBlock (anonymous, block) at (0,9) size 22x26
    58               RenderMathMLOperator {mo} at (0,0) size 22x26
    59                 RenderMathMLBlock (inline-block) {mo} at (0,0) size 22x26
     47            RenderMathMLOperator {mo} at (0,9) size 22x26
     48              RenderMathMLBlock (flex) {mo} at (0,0) size 22x26
     49                RenderBlock (anonymous) at (0,0) size 22x26
    6050                  RenderText {mo} at (0,-6) size 22x36
    6151                    text run at (0,-6) width 22: "\x{2211}"
     52            RenderBlock {mi} at (8,0) size 5x9
     53              RenderText {#text} at (0,-7) size 5x18
     54                text run at (0,-7) width 5: "y"
    6255        RenderText {#text} at (0,0) size 0x0
    6356      RenderBlock {p} at (0,174) size 784x65
     
    6659        RenderMathMLMath {math} at (36,0) size 52x65 [padding: 0 1 0 1]
    6760          RenderMathMLUnderOver {mover} at (1,3) size 10x62
    68             RenderMathMLBlock (anonymous, block) at (0,0) size 10x9
    69               RenderInline {mi} at (0,0) size 6x18
    70                 RenderText {#text} at (2,-7) size 6x18
    71                   text run at (2,-7) width 6: "y"
    72             RenderMathMLBlock (anonymous, block) at (0,9) size 10x53
    73               RenderMathMLOperator {mo} at (0,0) size 10x53
     61            RenderMathMLOperator {mo} at (0,9) size 10x53
     62            RenderBlock {mi} at (2,0) size 5x9
     63              RenderText {#text} at (0,-7) size 5x18
     64                text run at (0,-7) width 5: "y"
    7465          RenderBlock {div} at (11,0) size 40x40
    7566        RenderText {#text} at (0,0) size 0x0
     
    7970        RenderMathMLMath {math} at (46,3) size 9x18 [padding: 0 1 0 1]
    8071          RenderMathMLUnderOver {mover} at (1,0) size 7x18
    81             RenderMathMLBlock (anonymous, block) at (0,0) size 7x9
    82               RenderMathMLOperator {mo} at (1,0) size 6x9
    83                 RenderMathMLBlock (inline-block) {mo} at (0,0) size 6x9
     72            RenderBlock {mi} at (0,9) size 7x9
     73              RenderText {#text} at (0,-9) size 7x24
     74                text run at (0,-9) width 7: "x"
     75            RenderMathMLOperator {mo} at (0,0) size 6x9
     76              RenderMathMLBlock (flex) {mo} at (0,0) size 6x9
     77                RenderBlock (anonymous) at (0,0) size 6x9
    8478                  RenderText {mo} at (0,-5) size 6x18
    8579                    text run at (0,-5) width 6: "^"
    86             RenderMathMLBlock (anonymous, block) at (0,9) size 7x9
    87               RenderInline {mi} at (0,0) size 7x24
    88                 RenderText {#text} at (0,-9) size 7x24
    89                   text run at (0,-9) width 7: "x"
    9080        RenderText {#text} at (55,6) size 4x18
    9181          text run at (55,6) width 4: " "
    9282        RenderMathMLMath {math} at (59,7) size 12x14 [padding: 0 1 0 1]
    9383          RenderMathMLUnderOver {mover} at (1,0) size 10x14
    94             RenderMathMLBlock (anonymous, block) at (0,0) size 10x2
    95               RenderMathMLOperator {mo} at (2,0) size 6x2
    96                 RenderMathMLBlock (inline-block) {mo} at (0,0) size 6x2
     84            RenderBlock {mi} at (0,2) size 10x12
     85              RenderText {#text} at (0,-6) size 10x24
     86                text run at (0,-6) width 10: "A"
     87            RenderMathMLOperator {mo} at (2,0) size 6x2
     88              RenderMathMLBlock (flex) {mo} at (0,0) size 6x2
     89                RenderBlock (anonymous) at (0,0) size 6x2
    9790                  RenderText {mo} at (0,-13) size 6x18
    9891                    text run at (0,-13) width 6: "_"
    99             RenderMathMLBlock (anonymous, block) at (0,2) size 10x12
    100               RenderInline {mi} at (0,0) size 10x24
    101                 RenderText {#text} at (0,-6) size 10x24
    102                   text run at (0,-6) width 10: "A"
    10392        RenderText {#text} at (71,6) size 4x18
    10493          text run at (71,6) width 4: " "
    10594        RenderMathMLMath {math} at (75,10) size 9x11 [padding: 0 1 0 1]
    10695          RenderMathMLUnderOver {mover} at (1,0) size 7x11
    107             RenderMathMLBlock (anonymous, block) at (0,0) size 7x2
    108               RenderMathMLOperator {mo} at (1,0) size 6x2
    109                 RenderMathMLBlock (inline-block) {mo} at (0,0) size 6x2
     96            RenderBlock {mi} at (0,2) size 7x9
     97              RenderText {#text} at (0,-9) size 7x24
     98                text run at (0,-9) width 7: "x"
     99            RenderMathMLOperator {mo} at (0,0) size 6x2
     100              RenderMathMLBlock (flex) {mo} at (0,0) size 6x2
     101                RenderBlock (anonymous) at (0,0) size 6x2
    110102                  RenderText {mo} at (0,-13) size 6x18
    111103                    text run at (0,-13) width 6: "_"
    112             RenderMathMLBlock (anonymous, block) at (0,2) size 7x9
    113               RenderInline {mi} at (0,0) size 7x24
    114                 RenderText {#text} at (0,-9) size 7x24
    115                   text run at (0,-9) width 7: "x"
    116104        RenderText {#text} at (84,6) size 4x18
    117105          text run at (84,6) width 4: " "
    118106        RenderMathMLMath {math} at (88,0) size 12x21 [padding: 0 1 0 1]
    119107          RenderMathMLUnderOver {mover} at (1,0) size 10x21
    120             RenderMathMLBlock (anonymous, block) at (0,0) size 10x9
    121               RenderMathMLOperator {mo} at (2,0) size 6x9
    122                 RenderMathMLBlock (inline-block) {mo} at (0,0) size 6x9
     108            RenderBlock {mi} at (0,9) size 10x12
     109              RenderText {#text} at (0,-6) size 10x24
     110                text run at (0,-6) width 10: "A"
     111            RenderMathMLOperator {mo} at (2,0) size 6x9
     112              RenderMathMLBlock (flex) {mo} at (0,0) size 6x9
     113                RenderBlock (anonymous) at (0,0) size 6x9
    123114                  RenderText {mo} at (0,-5) size 6x18
    124115                    text run at (0,-5) width 6: "^"
    125             RenderMathMLBlock (anonymous, block) at (0,9) size 10x12
    126               RenderInline {mi} at (0,0) size 10x24
    127                 RenderText {#text} at (0,-6) size 10x24
    128                   text run at (0,-6) width 10: "A"
    129116        RenderText {#text} at (100,6) size 4x18
    130117          text run at (100,6) width 4: " "
    131118        RenderMathMLMath {math} at (104,5) size 13x16 [padding: 0 1 0 1]
    132119          RenderMathMLUnderOver {mover} at (1,0) size 11x16
    133             RenderMathMLBlock (anonymous, block) at (0,0) size 11x7
    134               RenderMathMLOperator {mo} at (0,0) size 11x7
    135                 RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x7
     120            RenderBlock {mi} at (2,7) size 7x9
     121              RenderText {#text} at (0,-9) size 7x24
     122                text run at (0,-9) width 7: "v"
     123            RenderMathMLOperator {mo} at (0,0) size 11x7
     124              RenderMathMLBlock (flex) {mo} at (0,0) size 11x7
     125                RenderBlock (anonymous) at (0,0) size 11x7
    136126                  RenderText {mo} at (0,-7) size 11x18
    137127                    text run at (0,-7) width 11: "\x{2192}"
    138             RenderMathMLBlock (anonymous, block) at (0,7) size 11x9
    139               RenderInline {mi} at (0,0) size 7x24
    140                 RenderText {#text} at (0,-9) size 7x24
    141                   text run at (0,-9) width 7: "v"
    142128        RenderText {#text} at (0,0) size 0x0
    143129layer at (45,202) size 10x10 scrollHeight 18
    144   RenderMathMLBlock (block) {mo} at (0,0) size 10x10
     130  RenderMathMLBlock (flex) {mo} at (0,0) size 10x10
     131    RenderBlock (anonymous) at (0,0) size 10x10
    145132layer at (45,212) size 10x10 scrollHeight 17
    146   RenderMathMLBlock (block) {mo} at (0,10) size 10x10
    147     RenderText {mo} at (0,-4) size 10x21
    148       text run at (0,-4) width 10: "\x{23AE}"
     133  RenderMathMLBlock (flex) {mo} at (0,10) size 10x10
     134    RenderBlock (anonymous) at (0,0) size 10x10
     135      RenderText {mo} at (0,-4) size 10x21
     136        text run at (0,-4) width 10: "\x{23AE}"
    149137layer at (45,222) size 10x10 scrollHeight 17
    150   RenderMathMLBlock (block) {mo} at (0,20) size 10x10
    151     RenderText {mo} at (0,-4) size 10x21
    152       text run at (0,-4) width 10: "\x{23AE}"
     138  RenderMathMLBlock (flex) {mo} at (0,20) size 10x10
     139    RenderBlock (anonymous) at (0,0) size 10x10
     140      RenderText {mo} at (0,-4) size 10x21
     141        text run at (0,-4) width 10: "\x{23AE}"
    153142layer at (45,232) size 10x8 scrollHeight 17
    154   RenderMathMLBlock (block) {mo} at (0,30) size 10x8
    155     RenderText {mo} at (0,-4) size 10x21
    156       text run at (0,-4) width 10: "\x{23AE}"
     143  RenderMathMLBlock (flex) {mo} at (0,30) size 10x8
     144    RenderBlock (anonymous) at (0,0) size 10x8
     145      RenderText {mo} at (0,-4) size 10x21
     146        text run at (0,-4) width 10: "\x{23AE}"
    157147layer at (45,240) size 10x15 scrollHeight 17
    158   RenderMathMLBlock (block) {mo} at (0,38) size 10x15
     148  RenderMathMLBlock (flex) {mo} at (0,38) size 10x15
     149    RenderBlock (anonymous) at (0,0) size 10x15
    159150layer at (45,203) size 10x15 backgroundClip at (45,202) size 10x10 clip at (45,202) size 10x10 outlineClip at (45,202) size 10x10
    160151  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
  • trunk/LayoutTests/platform/mac/mathml/presentation/roots-expected.txt

    r127769 r128837  
    1010          RenderMathMLSquareRoot {msqrt} at (1,0) size 20x15 [color=#FF0000] [intrinsic padding: 3 0 0 12]
    1111            RenderMathMLRow (anonymous) at (12,3) size 8x12
    12               RenderInline {mn} at (0,0) size 8x24
     12              RenderBlock {mn} at (0,0) size 8x12
    1313                RenderText {#text} at (0,-6) size 8x24
    1414                  text run at (0,-6) width 8: "2"
     
    2020            RenderMathMLRow (anonymous) at (12,3) size 27x12
    2121              RenderMathMLRow {mrow} at (0,0) size 27x12
    22                 RenderInline {mi} at (0,0) size 7x24
    23                   RenderText {#text} at (0,-6) size 7x24
    24                     text run at (0,-6) width 7: "x"
     22                RenderBlock {mi} at (0,3) size 7x9
     23                  RenderText {#text} at (0,-9) size 7x24
     24                    text run at (0,-9) width 7: "x"
    2525                RenderMathMLOperator {mo} at (7,2) size 12x10 [padding: 0 1 0 0]
    26                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    27                     RenderText {mo} at (0,-8) size 11x24
    28                       text run at (0,-8) width 11: "+"
    29                 RenderInline {mn} at (0,0) size 8x24
    30                   RenderText {#text} at (19,-6) size 8x24
    31                     text run at (19,-6) width 8: "1"
     26                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     27                    RenderBlock (anonymous) at (0,0) size 11x10
     28                      RenderText {mo} at (0,-8) size 11x24
     29                        text run at (0,-8) width 11: "+"
     30                RenderBlock {mn} at (19,0) size 8x12
     31                  RenderText {#text} at (0,-6) size 8x24
     32                    text run at (0,-6) width 8: "1"
    3233      RenderBlock {p} at (0,68) size 784x22
    3334        RenderText {#text} at (0,4) size 222x18
     
    3738            RenderMathMLRow (anonymous) at (12,3) size 32x16
    3839              RenderMathMLSubSup {msup} at (0,0) size 13x16
    39                 RenderMathMLBlock (anonymous, inline-block) at (0,7) size 7x9
    40                   RenderInline {mi} at (0,0) size 7x24
     40                RenderMathMLBlock (anonymous, flex) at (0,0) size 7x16 [padding: 7 0 0 0]
     41                  RenderBlock {mi} at (0,7) size 7x9
    4142                    RenderText {#text} at (0,-9) size 7x24
    4243                      text run at (0,-9) width 7: "x"
    43                 RenderInline {mn} at (0,0) size 6x18
    44                   RenderText {#text} at (7,-4) size 6x18
    45                     text run at (7,-4) width 6: "2"
     44                RenderMathMLBlock (anonymous, flex) at (7,0) size 6x16
     45                  RenderBlock {mn} at (0,0) size 6x10
     46                    RenderText {#text} at (0,-4) size 6x18
     47                      text run at (0,-4) width 6: "2"
    4648              RenderMathMLOperator {mo} at (13,6) size 11x10
    47                 RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    48                   RenderText {mo} at (0,-8) size 11x24
    49                     text run at (0,-8) width 11: "+"
    50               RenderInline {mn} at (0,0) size 8x24
    51                 RenderText {#text} at (24,-2) size 8x24
    52                   text run at (24,-2) width 8: "1"
     49                RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     50                  RenderBlock (anonymous) at (0,0) size 11x10
     51                    RenderText {mo} at (0,-8) size 11x24
     52                      text run at (0,-8) width 11: "+"
     53              RenderBlock {mn} at (24,4) size 8x12
     54                RenderText {#text} at (0,-6) size 8x24
     55                  text run at (0,-6) width 8: "1"
    5356      RenderBlock {p} at (0,106) size 784x32
    5457        RenderText {#text} at (0,6) size 113x18
     
    5861            RenderMathMLRow (anonymous) at (12,3) size 33x26
    5962              RenderMathMLFraction {mfrac} at (0,0) size 33x26
    60                 RenderMathMLBlock (anonymous, block) at (0,0) size 33x12 [padding: 0 3 0 3]
     63                RenderMathMLBlock (anonymous, flex) at (0,0) size 33x12 [padding: 0 3 0 3]
    6164                  RenderMathMLRow {mrow} at (3,0) size 27x12
    62                     RenderInline {mi} at (0,0) size 7x24
    63                       RenderText {#text} at (0,-6) size 7x24
    64                         text run at (0,-6) width 7: "x"
     65                    RenderBlock {mi} at (0,3) size 7x9
     66                      RenderText {#text} at (0,-9) size 7x24
     67                        text run at (0,-9) width 7: "x"
    6568                    RenderMathMLOperator {mo} at (7,2) size 12x10 [padding: 0 1 0 0]
    66                       RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    67                         RenderText {mo} at (0,-8) size 11x24
    68                           text run at (0,-8) width 11: "+"
    69                     RenderInline {mn} at (0,0) size 8x24
    70                       RenderText {#text} at (19,-6) size 8x24
    71                         text run at (19,-6) width 8: "1"
    72                 RenderMathMLBlock (anonymous, block) at (0,12) size 33x14 [padding: 2 3 0 3]
     69                      RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     70                        RenderBlock (anonymous) at (0,0) size 11x10
     71                          RenderText {mo} at (0,-8) size 11x24
     72                            text run at (0,-8) width 11: "+"
     73                    RenderBlock {mn} at (19,0) size 8x12
     74                      RenderText {#text} at (0,-6) size 8x24
     75                        text run at (0,-6) width 8: "1"
     76                RenderMathMLBlock (anonymous, flex) at (0,12) size 33x14 [padding: 2 3 0 3]
    7377                  RenderMathMLRow {mrow} at (3,2) size 27x12
    74                     RenderInline {mi} at (0,0) size 7x24
    75                       RenderText {#text} at (0,-6) size 7x24
    76                         text run at (0,-6) width 7: "x"
     78                    RenderBlock {mi} at (0,3) size 7x9
     79                      RenderText {#text} at (0,-9) size 7x24
     80                        text run at (0,-9) width 7: "x"
    7781                    RenderMathMLOperator {mo} at (7,2) size 12x10 [padding: 0 1 0 0]
    78                       RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    79                         RenderText {mo} at (0,-8) size 11x24
    80                           text run at (0,-8) width 11: "+"
    81                     RenderInline {mn} at (0,0) size 8x24
    82                       RenderText {#text} at (19,-6) size 8x24
    83                         text run at (19,-6) width 8: "2"
     82                      RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     83                        RenderBlock (anonymous) at (0,0) size 11x10
     84                          RenderText {mo} at (0,-8) size 11x24
     85                            text run at (0,-8) width 11: "+"
     86                    RenderBlock {mn} at (19,0) size 8x12
     87                      RenderText {#text} at (0,-6) size 8x24
     88                        text run at (0,-6) width 8: "2"
    8489      RenderBlock {p} at (0,154) size 784x22
    8590        RenderText {#text} at (0,4) size 173x18
     
    104109          RenderMathMLSquareRoot {msqrt} at (1,0) size 245x45 [intrinsic padding: 3 0 3 12]
    105110            RenderMathMLRow (anonymous) at (12,3) size 233x39
    106               RenderInline {mn} at (0,0) size 8x24
    107                 RenderText {#text} at (0,15) size 8x24
    108                   text run at (0,15) width 8: "1"
     111              RenderBlock {mn} at (0,21) size 8x12
     112                RenderText {#text} at (0,-6) size 8x24
     113                  text run at (0,-6) width 8: "1"
    109114              RenderMathMLOperator {mo} at (8,23) size 11x10
    110                 RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    111                   RenderText {mo} at (0,-8) size 11x24
    112                     text run at (0,-8) width 11: "+"
     115                RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     116                  RenderBlock (anonymous) at (0,0) size 11x10
     117                    RenderText {mo} at (0,-8) size 11x24
     118                      text run at (0,-8) width 11: "+"
    113119              RenderMathMLSquareRoot {msqrt} at (19,0) size 214x39 [intrinsic padding: 3 0 3 12]
    114120                RenderMathMLRow (anonymous) at (12,3) size 202x33
    115121                  RenderMathMLRow {mrow} at (0,0) size 202x33
    116                     RenderInline {mn} at (0,0) size 8x24
    117                       RenderText {#text} at (0,12) size 8x24
    118                         text run at (0,12) width 8: "2"
     122                    RenderBlock {mn} at (0,18) size 8x12
     123                      RenderText {#text} at (0,-6) size 8x24
     124                        text run at (0,-6) width 8: "2"
    119125                    RenderMathMLOperator {mo} at (8,20) size 12x10 [padding: 0 1 0 0]
    120                       RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    121                         RenderText {mo} at (0,-8) size 11x24
    122                           text run at (0,-8) width 11: "+"
     126                      RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     127                        RenderBlock (anonymous) at (0,0) size 11x10
     128                          RenderText {mo} at (0,-8) size 11x24
     129                            text run at (0,-8) width 11: "+"
    123130                    RenderMathMLSquareRoot {msqrt} at (20,0) size 182x33 [intrinsic padding: 3 0 3 12]
    124131                      RenderMathMLRow (anonymous) at (12,3) size 170x27
    125132                        RenderMathMLRow {mrow} at (0,0) size 170x27
    126                           RenderInline {mn} at (0,0) size 8x24
    127                             RenderText {#text} at (0,9) size 8x24
    128                               text run at (0,9) width 8: "3"
     133                          RenderBlock {mn} at (0,15) size 8x12
     134                            RenderText {#text} at (0,-6) size 8x24
     135                              text run at (0,-6) width 8: "3"
    129136                          RenderMathMLOperator {mo} at (8,17) size 12x10 [padding: 0 1 0 0]
    130                             RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    131                               RenderText {mo} at (0,-8) size 11x24
    132                                 text run at (0,-8) width 11: "+"
     137                            RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     138                              RenderBlock (anonymous) at (0,0) size 11x10
     139                                RenderText {mo} at (0,-8) size 11x24
     140                                  text run at (0,-8) width 11: "+"
    133141                          RenderMathMLSquareRoot {msqrt} at (20,0) size 150x27 [intrinsic padding: 3 0 0 12]
    134142                            RenderMathMLRow (anonymous) at (12,3) size 138x24
    135143                              RenderMathMLRow {mrow} at (0,0) size 138x24
    136                                 RenderInline {mn} at (0,0) size 8x24
    137                                   RenderText {#text} at (0,6) size 8x24
    138                                     text run at (0,6) width 8: "4"
     144                                RenderBlock {mn} at (0,12) size 8x12
     145                                  RenderText {#text} at (0,-6) size 8x24
     146                                    text run at (0,-6) width 8: "4"
    139147                                RenderMathMLOperator {mo} at (8,14) size 12x10 [padding: 0 1 0 0]
    140                                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    141                                     RenderText {mo} at (0,-8) size 11x24
    142                                       text run at (0,-8) width 11: "+"
     148                                  RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     149                                    RenderBlock (anonymous) at (0,0) size 11x10
     150                                      RenderText {mo} at (0,-8) size 11x24
     151                                        text run at (0,-8) width 11: "+"
    143152                                RenderMathMLSquareRoot {msqrt} at (20,0) size 118x24 [intrinsic padding: 3 0 0 12]
    144153                                  RenderMathMLRow (anonymous) at (12,3) size 106x21
    145154                                    RenderMathMLRow {mrow} at (0,0) size 106x21
    146                                       RenderInline {mn} at (0,0) size 8x24
    147                                         RenderText {#text} at (0,3) size 8x24
    148                                           text run at (0,3) width 8: "5"
     155                                      RenderBlock {mn} at (0,8) size 8x13
     156                                        RenderText {#text} at (0,-5) size 8x24
     157                                          text run at (0,-5) width 8: "5"
    149158                                      RenderMathMLOperator {mo} at (8,11) size 12x10 [padding: 0 1 0 0]
    150                                         RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    151                                           RenderText {mo} at (0,-8) size 11x24
    152                                             text run at (0,-8) width 11: "+"
     159                                        RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     160                                          RenderBlock (anonymous) at (0,0) size 11x10
     161                                            RenderText {mo} at (0,-8) size 11x24
     162                                              text run at (0,-8) width 11: "+"
    153163                                      RenderMathMLSquareRoot {msqrt} at (20,0) size 86x21 [intrinsic padding: 3 0 0 12]
    154164                                        RenderMathMLRow (anonymous) at (12,3) size 74x18
    155165                                          RenderMathMLRow {mrow} at (0,0) size 74x18
    156                                             RenderInline {mn} at (0,0) size 8x24
    157                                               RenderText {#text} at (0,0) size 8x24
    158                                                 text run at (0,0) width 8: "6"
     166                                            RenderBlock {mn} at (0,6) size 8x12
     167                                              RenderText {#text} at (0,-6) size 8x24
     168                                                text run at (0,-6) width 8: "6"
    159169                                            RenderMathMLOperator {mo} at (8,8) size 12x10 [padding: 0 1 0 0]
    160                                               RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    161                                                 RenderText {mo} at (0,-8) size 11x24
    162                                                   text run at (0,-8) width 11: "+"
     170                                              RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     171                                                RenderBlock (anonymous) at (0,0) size 11x10
     172                                                  RenderText {mo} at (0,-8) size 11x24
     173                                                    text run at (0,-8) width 11: "+"
    163174                                            RenderMathMLSquareRoot {msqrt} at (20,0) size 54x18 [intrinsic padding: 3 0 0 12]
    164175                                              RenderMathMLRow (anonymous) at (12,3) size 42x15
    165176                                                RenderMathMLRow {mrow} at (0,0) size 42x15
    166                                                   RenderInline {mn} at (0,0) size 8x24
    167                                                     RenderText {#text} at (0,-3) size 8x24
    168                                                       text run at (0,-3) width 8: "7"
     177                                                  RenderBlock {mn} at (0,3) size 8x12
     178                                                    RenderText {#text} at (0,-6) size 8x24
     179                                                      text run at (0,-6) width 8: "7"
    169180                                                  RenderMathMLOperator {mo} at (8,5) size 12x10 [padding: 0 1 0 0]
    170                                                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    171                                                       RenderText {mo} at (0,-8) size 11x24
    172                                                         text run at (0,-8) width 11: "+"
     181                                                    RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     182                                                      RenderBlock (anonymous) at (0,0) size 11x10
     183                                                        RenderText {mo} at (0,-8) size 11x24
     184                                                          text run at (0,-8) width 11: "+"
    173185                                                  RenderMathMLSquareRoot {msqrt} at (20,0) size 22x15 [intrinsic padding: 3 0 0 12]
    174186                                                    RenderMathMLRow (anonymous) at (12,3) size 10x12
    175                                                       RenderInline {mi} at (0,0) size 10x24
     187                                                      RenderBlock {mi} at (0,0) size 10x12
    176188                                                        RenderText {#text} at (0,-6) size 10x24
    177189                                                          text run at (0,-6) width 10: "A"
     
    189201          RenderMathMLSquareRoot {msqrt} at (1,0) size 826x15 [intrinsic padding: 3 0 0 12]
    190202            RenderMathMLRow (anonymous) at (12,3) size 814x12
    191               RenderInline {mi} at (0,0) size 407x24
     203              RenderBlock {mi} at (0,0) size 407x9
    192204                RenderText {#text} at (0,-9) size 7x24
    193205                  text run at (0,-9) width 7: "x"
    194               RenderInline {mi} at (0,0) size 407x24
    195                 RenderText {#text} at (407,-9) size 7x24
    196                   text run at (407,-9) width 7: "y"
     206              RenderBlock {mi} at (407,0) size 407x12
     207                RenderText {#text} at (0,-9) size 7x24
     208                  text run at (0,-9) width 7: "y"
    197209        RenderText {#text} at (0,0) size 0x0
    198210layer at (182,170) size 20x19
    199211  RenderMathMLRoot {mroot} at (1,0) size 20x19 [intrinsic padding: 7 0 0 12]
    200212    RenderMathMLRow (anonymous) at (12,7) size 8x12
    201       RenderInline {mn} at (0,0) size 8x24
     213      RenderBlock {mn} at (0,0) size 8x12
    202214        RenderText {#text} at (0,-6) size 8x24
    203215          text run at (0,-6) width 8: "2"
     
    209221  RenderMathMLRoot {mroot} at (1,0) size 47x19 [intrinsic padding: 7 0 0 39]
    210222    RenderMathMLRow (anonymous) at (39,7) size 8x12
    211       RenderInline {mn} at (0,0) size 8x24
     223      RenderBlock {mn} at (0,0) size 8x12
    212224        RenderText {#text} at (0,-6) size 8x24
    213225          text run at (0,-6) width 8: "2"
    214226layer at (84,208) size 39x14
    215227  RenderMathMLRow {mrow} at (0,0) size 39x14 [padding: 0 4 4 2]
    216     RenderInline {mi} at (0,0) size 5x18
    217       RenderText {#text} at (2,-6) size 5x18
    218         text run at (2,-6) width 5: "x"
     228    RenderBlock {mi} at (2,1) size 5x7
     229      RenderText {#text} at (0,-7) size 5x18
     230        text run at (0,-7) width 5: "x"
    219231    RenderMathMLOperator {mo} at (7,0) size 9x8 [padding: 0 1 0 0]
    220       RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
    221         RenderText {mo} at (0,-6) size 8x18
    222           text run at (0,-6) width 8: "+"
    223     RenderInline {mi} at (0,0) size 5x18
    224       RenderText {#text} at (16,-6) size 5x18
    225         text run at (16,-6) width 5: "y"
     232      RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     233        RenderBlock (anonymous) at (0,0) size 8x8
     234          RenderText {mo} at (0,-6) size 8x18
     235            text run at (0,-6) width 8: "+"
     236    RenderBlock {mi} at (16,1) size 5x9
     237      RenderText {#text} at (0,-7) size 5x18
     238        text run at (0,-7) width 5: "y"
    226239    RenderMathMLOperator {mo} at (21,0) size 9x8 [padding: 0 1 0 0]
    227       RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
    228         RenderText {mo} at (0,-6) size 8x18
    229           text run at (0,-6) width 8: "+"
    230     RenderInline {mi} at (0,0) size 5x18
    231       RenderText {#text} at (30,-6) size 5x18
    232         text run at (30,-6) width 5: "z"
     240      RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     241        RenderBlock (anonymous) at (0,0) size 8x8
     242          RenderText {mo} at (0,-6) size 8x18
     243            text run at (0,-6) width 8: "+"
     244    RenderBlock {mi} at (30,1) size 5x7
     245      RenderText {#text} at (0,-7) size 5x18
     246        text run at (0,-7) width 5: "z"
    233247layer at (194,246) size 72x32
    234248  RenderMathMLRoot {mroot} at (1,0) size 72x32 [intrinsic padding: 3 0 3 39]
    235249    RenderMathMLRow (anonymous) at (39,3) size 33x26
    236250      RenderMathMLFraction {mfrac} at (0,0) size 33x26
    237         RenderMathMLBlock (anonymous, block) at (0,0) size 33x12 [padding: 0 3 0 3]
     251        RenderMathMLBlock (anonymous, flex) at (0,0) size 33x12 [padding: 0 3 0 3]
    238252          RenderMathMLRow {mrow} at (3,0) size 27x12
    239             RenderInline {mi} at (0,0) size 7x24
    240               RenderText {#text} at (0,-6) size 7x24
    241                 text run at (0,-6) width 7: "x"
     253            RenderBlock {mi} at (0,3) size 7x9
     254              RenderText {#text} at (0,-9) size 7x24
     255                text run at (0,-9) width 7: "x"
    242256            RenderMathMLOperator {mo} at (7,2) size 12x10 [padding: 0 1 0 0]
    243               RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    244                 RenderText {mo} at (0,-8) size 11x24
    245                   text run at (0,-8) width 11: "+"
    246             RenderInline {mn} at (0,0) size 8x24
    247               RenderText {#text} at (19,-6) size 8x24
    248                 text run at (19,-6) width 8: "1"
    249         RenderMathMLBlock (anonymous, block) at (0,12) size 33x14 [padding: 2 3 0 3]
     257              RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     258                RenderBlock (anonymous) at (0,0) size 11x10
     259                  RenderText {mo} at (0,-8) size 11x24
     260                    text run at (0,-8) width 11: "+"
     261            RenderBlock {mn} at (19,0) size 8x12
     262              RenderText {#text} at (0,-6) size 8x24
     263                text run at (0,-6) width 8: "1"
     264        RenderMathMLBlock (anonymous, flex) at (0,12) size 33x14 [padding: 2 3 0 3]
    250265          RenderMathMLRow {mrow} at (3,2) size 27x12
    251             RenderInline {mi} at (0,0) size 7x24
    252               RenderText {#text} at (0,-6) size 7x24
    253                 text run at (0,-6) width 7: "x"
     266            RenderBlock {mi} at (0,3) size 7x9
     267              RenderText {#text} at (0,-9) size 7x24
     268                text run at (0,-9) width 7: "x"
    254269            RenderMathMLOperator {mo} at (7,2) size 12x10 [padding: 0 1 0 0]
    255               RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    256                 RenderText {mo} at (0,-8) size 11x24
    257                   text run at (0,-8) width 11: "+"
    258             RenderInline {mn} at (0,0) size 8x24
    259               RenderText {#text} at (19,-6) size 8x24
    260                 text run at (19,-6) width 8: "2"
     270              RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     271                RenderBlock (anonymous) at (0,0) size 11x10
     272                  RenderText {mo} at (0,-8) size 11x24
     273                    text run at (0,-8) width 11: "+"
     274            RenderBlock {mn} at (19,0) size 8x12
     275              RenderText {#text} at (0,-6) size 8x24
     276                text run at (0,-6) width 8: "2"
    261277layer at (194,251) size 39x14
    262278  RenderMathMLRow {mrow} at (0,5) size 39x14 [padding: 0 4 4 2]
    263     RenderInline {mi} at (0,0) size 5x18
    264       RenderText {#text} at (2,-6) size 5x18
    265         text run at (2,-6) width 5: "x"
     279    RenderBlock {mi} at (2,1) size 5x7
     280      RenderText {#text} at (0,-7) size 5x18
     281        text run at (0,-7) width 5: "x"
    266282    RenderMathMLOperator {mo} at (7,0) size 9x8 [padding: 0 1 0 0]
    267       RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
    268         RenderText {mo} at (0,-6) size 8x18
    269           text run at (0,-6) width 8: "+"
    270     RenderInline {mi} at (0,0) size 5x18
    271       RenderText {#text} at (16,-6) size 5x18
    272         text run at (16,-6) width 5: "y"
     283      RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     284        RenderBlock (anonymous) at (0,0) size 8x8
     285          RenderText {mo} at (0,-6) size 8x18
     286            text run at (0,-6) width 8: "+"
     287    RenderBlock {mi} at (16,1) size 5x9
     288      RenderText {#text} at (0,-7) size 5x18
     289        text run at (0,-7) width 5: "y"
    273290    RenderMathMLOperator {mo} at (21,0) size 9x8 [padding: 0 1 0 0]
    274       RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
    275         RenderText {mo} at (0,-6) size 8x18
    276           text run at (0,-6) width 8: "+"
    277     RenderInline {mi} at (0,0) size 5x18
    278       RenderText {#text} at (30,-6) size 5x18
    279         text run at (30,-6) width 5: "z"
     291      RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     292        RenderBlock (anonymous) at (0,0) size 8x8
     293          RenderText {mo} at (0,-6) size 8x18
     294            text run at (0,-6) width 8: "+"
     295    RenderBlock {mi} at (30,1) size 5x7
     296      RenderText {#text} at (0,-7) size 5x18
     297        text run at (0,-7) width 5: "z"
    280298layer at (84,294) size 27x36
    281299  RenderMathMLRoot {mroot} at (1,0) size 27x36 [intrinsic padding: 24 0 0 19]
    282300    RenderMathMLRow (anonymous) at (19,24) size 8x12
    283       RenderInline {mn} at (0,0) size 8x24
     301      RenderBlock {mn} at (0,0) size 8x12
    284302        RenderText {#text} at (0,-6) size 8x24
    285303          text run at (0,-6) width 8: "2"
    286304layer at (84,294) size 19x31
    287305  RenderMathMLFraction {mfrac} at (0,0) size 19x31 [padding: 0 4 4 2]
    288     RenderMathMLBlock (anonymous, block) at (2,0) size 13x18 [padding: 0 2 0 2]
     306    RenderMathMLBlock (anonymous, flex) at (2,0) size 13x18 [padding: 0 2 0 2]
    289307      RenderMathMLFraction {mfrac} at (2,0) size 9x18
    290         RenderMathMLBlock (anonymous, block) at (0,0) size 9x7 [padding: 0 2 0 2]
    291           RenderInline {mi} at (0,0) size 5x18
    292             RenderText {#text} at (2,-7) size 5x18
    293               text run at (2,-7) width 5: "x"
    294         RenderMathMLBlock (anonymous, block) at (0,7) size 9x11 [padding: 2 2 0 2]
    295           RenderInline {mi} at (0,0) size 5x18
    296             RenderText {#text} at (2,-5) size 5x18
    297               text run at (2,-5) width 5: "y"
    298     RenderMathMLBlock (anonymous, block) at (2,18) size 13x9 [padding: 2 2 0 2]
    299       RenderInline {mi} at (0,0) size 5x18
    300         RenderText {#text} at (4,-5) size 5x18
    301           text run at (4,-5) width 5: "z"
     308        RenderMathMLBlock (anonymous, flex) at (0,0) size 9x7 [padding: 0 2 0 2]
     309          RenderBlock {mi} at (2,0) size 5x7
     310            RenderText {#text} at (0,-7) size 5x18
     311              text run at (0,-7) width 5: "x"
     312        RenderMathMLBlock (anonymous, flex) at (0,7) size 9x11 [padding: 2 2 0 2]
     313          RenderBlock {mi} at (2,2) size 5x9
     314            RenderText {#text} at (0,-7) size 5x18
     315              text run at (0,-7) width 5: "y"
     316    RenderMathMLBlock (anonymous, flex) at (2,18) size 13x9 [padding: 2 2 0 2]
     317      RenderBlock {mi} at (4,2) size 5x7
     318        RenderText {#text} at (0,-7) size 5x18
     319          text run at (0,-7) width 5: "z"
    302320layer at (119,410) size 293x70
    303321  RenderMathMLRoot {mroot} at (1,0) size 293x70 [intrinsic padding: 3 0 3 18]
    304322    RenderMathMLRow (anonymous) at (18,3) size 275x64
    305323      RenderMathMLRow {mrow} at (0,0) size 275x64
    306         RenderInline {mn} at (0,0) size 8x24
    307           RenderText {#text} at (0,28) size 8x24
    308             text run at (0,28) width 8: "1"
     324        RenderBlock {mn} at (0,34) size 8x12
     325          RenderText {#text} at (0,-6) size 8x24
     326            text run at (0,-6) width 8: "1"
    309327        RenderMathMLOperator {mo} at (8,36) size 12x10 [padding: 0 1 0 0]
    310           RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    311             RenderText {mo} at (0,-8) size 11x24
    312               text run at (0,-8) width 11: "+"
     328          RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     329            RenderBlock (anonymous) at (0,0) size 11x10
     330              RenderText {mo} at (0,-8) size 11x24
     331                text run at (0,-8) width 11: "+"
    313332layer at (157,413) size 255x64
    314333  RenderMathMLRoot {mroot} at (20,0) size 255x64 [intrinsic padding: 3 0 3 18]
    315334    RenderMathMLRow (anonymous) at (18,3) size 237x58
    316335      RenderMathMLRow {mrow} at (0,0) size 237x58
    317         RenderInline {mn} at (0,0) size 8x24
    318           RenderText {#text} at (0,25) size 8x24
    319             text run at (0,25) width 8: "2"
     336        RenderBlock {mn} at (0,31) size 8x12
     337          RenderText {#text} at (0,-6) size 8x24
     338            text run at (0,-6) width 8: "2"
    320339        RenderMathMLOperator {mo} at (8,33) size 12x10 [padding: 0 1 0 0]
    321           RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    322             RenderText {mo} at (0,-8) size 11x24
    323               text run at (0,-8) width 11: "+"
     340          RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     341            RenderBlock (anonymous) at (0,0) size 11x10
     342              RenderText {mo} at (0,-8) size 11x24
     343                text run at (0,-8) width 11: "+"
    324344layer at (195,416) size 217x58
    325345  RenderMathMLRoot {mroot} at (20,0) size 217x58 [intrinsic padding: 3 0 3 18]
    326346    RenderMathMLRow (anonymous) at (18,3) size 199x52
    327347      RenderMathMLRow {mrow} at (0,0) size 199x52
    328         RenderInline {mn} at (0,0) size 8x24
    329           RenderText {#text} at (0,22) size 8x24
    330             text run at (0,22) width 8: "3"
     348        RenderBlock {mn} at (0,28) size 8x12
     349          RenderText {#text} at (0,-6) size 8x24
     350            text run at (0,-6) width 8: "3"
    331351        RenderMathMLOperator {mo} at (8,30) size 12x10 [padding: 0 1 0 0]
    332           RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    333             RenderText {mo} at (0,-8) size 11x24
    334               text run at (0,-8) width 11: "+"
     352          RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     353            RenderBlock (anonymous) at (0,0) size 11x10
     354              RenderText {mo} at (0,-8) size 11x24
     355                text run at (0,-8) width 11: "+"
    335356layer at (233,419) size 179x52
    336357  RenderMathMLRoot {mroot} at (20,0) size 179x52 [intrinsic padding: 3 0 3 17]
    337358    RenderMathMLRow (anonymous) at (17,3) size 162x46
    338359      RenderMathMLRow {mrow} at (0,0) size 162x46
    339         RenderInline {mn} at (0,0) size 8x24
    340           RenderText {#text} at (0,19) size 8x24
    341             text run at (0,19) width 8: "4"
     360        RenderBlock {mn} at (0,25) size 8x12
     361          RenderText {#text} at (0,-6) size 8x24
     362            text run at (0,-6) width 8: "4"
    342363        RenderMathMLOperator {mo} at (8,27) size 12x10 [padding: 0 1 0 0]
    343           RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    344             RenderText {mo} at (0,-8) size 11x24
    345               text run at (0,-8) width 11: "+"
     364          RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     365            RenderBlock (anonymous) at (0,0) size 11x10
     366              RenderText {mo} at (0,-8) size 11x24
     367                text run at (0,-8) width 11: "+"
    346368layer at (270,422) size 142x46
    347369  RenderMathMLRoot {mroot} at (20,0) size 142x46 [intrinsic padding: 3 0 3 16]
    348370    RenderMathMLRow (anonymous) at (16,3) size 126x40
    349371      RenderMathMLRow {mrow} at (0,0) size 126x40
    350         RenderInline {mn} at (0,0) size 8x24
    351           RenderText {#text} at (0,16) size 8x24
    352             text run at (0,16) width 8: "5"
     372        RenderBlock {mn} at (0,21) size 8x13
     373          RenderText {#text} at (0,-5) size 8x24
     374            text run at (0,-5) width 8: "5"
    353375        RenderMathMLOperator {mo} at (8,24) size 12x10 [padding: 0 1 0 0]
    354           RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    355             RenderText {mo} at (0,-8) size 11x24
    356               text run at (0,-8) width 11: "+"
     376          RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     377            RenderBlock (anonymous) at (0,0) size 11x10
     378              RenderText {mo} at (0,-8) size 11x24
     379                text run at (0,-8) width 11: "+"
    357380layer at (306,425) size 106x40
    358381  RenderMathMLRoot {mroot} at (20,0) size 106x40 [intrinsic padding: 3 0 3 14]
    359382    RenderMathMLRow (anonymous) at (14,3) size 92x34
    360383      RenderMathMLRow {mrow} at (0,0) size 92x34
    361         RenderInline {mn} at (0,0) size 8x24
    362           RenderText {#text} at (0,13) size 8x24
    363             text run at (0,13) width 8: "6"
     384        RenderBlock {mn} at (0,19) size 8x12
     385          RenderText {#text} at (0,-6) size 8x24
     386            text run at (0,-6) width 8: "6"
    364387        RenderMathMLOperator {mo} at (8,21) size 12x10 [padding: 0 1 0 0]
    365           RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    366             RenderText {mo} at (0,-8) size 11x24
    367               text run at (0,-8) width 11: "+"
     388          RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     389            RenderBlock (anonymous) at (0,0) size 11x10
     390              RenderText {mo} at (0,-8) size 11x24
     391                text run at (0,-8) width 11: "+"
    368392layer at (340,428) size 72x34
    369393  RenderMathMLRoot {mroot} at (20,0) size 72x34 [intrinsic padding: 3 0 3 13]
    370394    RenderMathMLRow (anonymous) at (13,3) size 59x28
    371395      RenderMathMLRow {mrow} at (0,0) size 59x28
    372         RenderInline {mn} at (0,0) size 8x24
    373           RenderText {#text} at (0,10) size 8x24
    374             text run at (0,10) width 8: "7"
     396        RenderBlock {mn} at (0,16) size 8x12
     397          RenderText {#text} at (0,-6) size 8x24
     398            text run at (0,-6) width 8: "7"
    375399        RenderMathMLOperator {mo} at (8,18) size 12x10 [padding: 0 1 0 0]
    376           RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    377             RenderText {mo} at (0,-8) size 11x24
    378               text run at (0,-8) width 11: "+"
     400          RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     401            RenderBlock (anonymous) at (0,0) size 11x10
     402              RenderText {mo} at (0,-8) size 11x24
     403                text run at (0,-8) width 11: "+"
    379404layer at (373,431) size 39x28
    380405  RenderMathMLRoot {mroot} at (20,0) size 39x28 [intrinsic padding: 16 0 0 29]
    381406    RenderMathMLRow (anonymous) at (29,16) size 10x12
    382       RenderInline {mi} at (0,0) size 10x24
     407      RenderBlock {mi} at (0,0) size 10x12
    383408        RenderText {#text} at (0,-6) size 10x24
    384409          text run at (0,-6) width 10: "A"
    385410layer at (373,431) size 29x23
    386411  RenderMathMLFraction {mfrac} at (0,0) size 29x23 [padding: 0 4 4 2]
    387     RenderMathMLBlock (anonymous, block) at (2,0) size 23x10 [padding: 0 2 0 2]
     412    RenderMathMLBlock (anonymous, flex) at (2,0) size 23x10 [padding: 0 2 0 2]
    388413      RenderMathMLRow {mrow} at (2,0) size 19x10
    389         RenderInline {mi} at (0,0) size 5x18
    390           RenderText {#text} at (0,-6) size 5x18
    391             text run at (0,-6) width 5: "x"
     414        RenderBlock {mi} at (0,1) size 5x7
     415          RenderText {#text} at (0,-7) size 5x18
     416            text run at (0,-7) width 5: "x"
    392417        RenderMathMLOperator {mo} at (5,0) size 9x8 [padding: 0 1 0 0]
    393           RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
    394             RenderText {mo} at (0,-6) size 8x18
    395               text run at (0,-6) width 8: "+"
    396         RenderInline {mi} at (0,0) size 5x18
    397           RenderText {#text} at (14,-6) size 5x18
    398             text run at (14,-6) width 5: "y"
    399     RenderMathMLBlock (anonymous, block) at (2,10) size 23x9 [padding: 2 2 0 2]
    400       RenderInline {mi} at (0,0) size 5x18
    401         RenderText {#text} at (9,-5) size 5x18
    402           text run at (9,-5) width 5: "z"
     418          RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     419            RenderBlock (anonymous) at (0,0) size 8x8
     420              RenderText {mo} at (0,-6) size 8x18
     421                text run at (0,-6) width 8: "+"
     422        RenderBlock {mi} at (14,1) size 5x9
     423          RenderText {#text} at (0,-7) size 5x18
     424            text run at (0,-7) width 5: "y"
     425    RenderMathMLBlock (anonymous, flex) at (2,10) size 23x9 [padding: 2 2 0 2]
     426      RenderBlock {mi} at (9,2) size 5x7
     427        RenderText {#text} at (0,-7) size 5x18
     428          text run at (0,-7) width 5: "z"
    403429layer at (340,434) size 12x14
    404430  RenderBlock (positioned) {mn} at (0,6) size 12x14
  • trunk/LayoutTests/platform/mac/mathml/presentation/row-alignment-expected.txt

    r124512 r128837  
    11layer at (0,0) size 800x600
    22  RenderView at (0,0) size 800x600
    3 layer at (0,0) size 800x512
    4   RenderBlock {html} at (0,0) size 800x512
    5     RenderBody {body} at (8,19) size 784x477
     3layer at (0,0) size 800x516
     4  RenderBlock {html} at (0,0) size 800x516
     5    RenderBody {body} at (8,19) size 784x481
    66      RenderBlock {div} at (0,0) size 784x65
    77        RenderBlock {h2} at (0,0) size 784x28
     
    1212            text run at (0,0) width 154: "I am a paragraph of text "
    1313          RenderMathMLMath {math} at (154,3) size 29x12 [padding: 0 1 0 1]
    14             RenderInline {mi} at (0,0) size 7x24
    15               RenderText {#text} at (1,-6) size 7x24
    16                 text run at (1,-6) width 7: "x"
     14            RenderBlock {mi} at (1,3) size 7x9
     15              RenderText {#text} at (0,-9) size 7x24
     16                text run at (0,-9) width 7: "x"
    1717            RenderMathMLOperator {mo} at (8,2) size 12x10 [padding: 0 1 0 0]
    18               RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    19                 RenderText {mo} at (0,-8) size 11x24
    20                   text run at (0,-8) width 11: "+"
    21             RenderInline {mn} at (0,0) size 8x24
    22               RenderText {#text} at (20,-6) size 8x24
    23                 text run at (20,-6) width 8: "1"
     18              RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     19                RenderBlock (anonymous) at (0,0) size 11x10
     20                  RenderText {mo} at (0,-8) size 11x24
     21                    text run at (0,-8) width 11: "+"
     22            RenderBlock {mn} at (20,0) size 8x12
     23              RenderText {#text} at (0,-6) size 8x24
     24                text run at (0,-6) width 8: "1"
    2425          RenderText {#text} at (183,0) size 110x18
    2526            text run at (183,0) width 110: " with math inline."
     
    3334          RenderMathMLMath {math} at (27,0) size 35x26 [padding: 0 1 0 1]
    3435            RenderMathMLFraction {mfrac} at (1,0) size 33x26
    35               RenderMathMLBlock (anonymous, block) at (0,0) size 33x12 [padding: 0 3 0 3]
     36              RenderMathMLBlock (anonymous, flex) at (0,0) size 33x12 [padding: 0 3 0 3]
    3637                RenderMathMLRow {mrow} at (3,0) size 27x12
    37                   RenderInline {mi} at (0,0) size 7x24
    38                     RenderText {#text} at (0,-6) size 7x24
    39                       text run at (0,-6) width 7: "x"
     38                  RenderBlock {mi} at (0,3) size 7x9
     39                    RenderText {#text} at (0,-9) size 7x24
     40                      text run at (0,-9) width 7: "x"
    4041                  RenderMathMLOperator {mo} at (7,2) size 12x10 [padding: 0 1 0 0]
    41                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    42                       RenderText {mo} at (0,-8) size 11x24
    43                         text run at (0,-8) width 11: "+"
    44                   RenderInline {mn} at (0,0) size 8x24
    45                     RenderText {#text} at (19,-6) size 8x24
    46                       text run at (19,-6) width 8: "1"
    47               RenderMathMLBlock (anonymous, block) at (0,12) size 33x14 [padding: 2 3 0 3]
    48                 RenderInline {mn} at (0,0) size 9x24
    49                   RenderText {#text} at (12,-4) size 9x24
    50                     text run at (12,-4) width 9: "2"
     42                    RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     43                      RenderBlock (anonymous) at (0,0) size 11x10
     44                        RenderText {mo} at (0,-8) size 11x24
     45                          text run at (0,-8) width 11: "+"
     46                  RenderBlock {mn} at (19,0) size 8x12
     47                    RenderText {#text} at (0,-6) size 8x24
     48                      text run at (0,-6) width 8: "1"
     49              RenderMathMLBlock (anonymous, flex) at (0,12) size 33x14 [padding: 2 3 0 3]
     50                RenderBlock {mn} at (12,2) size 8x12
     51                  RenderText {#text} at (0,-6) size 8x24
     52                    text run at (0,-6) width 8: "2"
    5153          RenderText {#text} at (0,0) size 0x0
    5254        RenderBlock {p} at (0,89) size 784x26
     
    5456            text run at (0,3) width 27: "text "
    5557          RenderMathMLMath {math} at (27,0) size 54x26 [padding: 0 1 0 1]
    56             RenderInline {mi} at (0,0) size 7x24
    57               RenderText {#text} at (1,0) size 7x24
    58                 text run at (1,0) width 7: "x"
     58            RenderBlock {mi} at (1,9) size 7x9
     59              RenderText {#text} at (0,-9) size 7x24
     60                text run at (0,-9) width 7: "x"
    5961            RenderMathMLOperator {mo} at (8,8) size 12x10 [padding: 0 1 0 0]
    60               RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    61                 RenderText {mo} at (0,-8) size 11x24
    62                   text run at (0,-8) width 11: "+"
     62              RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     63                RenderBlock (anonymous) at (0,0) size 11x10
     64                  RenderText {mo} at (0,-8) size 11x24
     65                    text run at (0,-8) width 11: "+"
    6366            RenderMathMLFraction {mfrac} at (20,0) size 33x26
    64               RenderMathMLBlock (anonymous, block) at (0,0) size 33x12 [padding: 0 3 0 3]
     67              RenderMathMLBlock (anonymous, flex) at (0,0) size 33x12 [padding: 0 3 0 3]
    6568                RenderMathMLRow {mrow} at (3,0) size 27x12
    66                   RenderInline {mi} at (0,0) size 7x24
    67                     RenderText {#text} at (0,-6) size 7x24
    68                       text run at (0,-6) width 7: "x"
     69                  RenderBlock {mi} at (0,3) size 7x9
     70                    RenderText {#text} at (0,-9) size 7x24
     71                      text run at (0,-9) width 7: "x"
    6972                  RenderMathMLOperator {mo} at (7,2) size 12x10 [padding: 0 1 0 0]
    70                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    71                       RenderText {mo} at (0,-8) size 11x24
    72                         text run at (0,-8) width 11: "+"
    73                   RenderInline {mn} at (0,0) size 8x24
    74                     RenderText {#text} at (19,-6) size 8x24
    75                       text run at (19,-6) width 8: "1"
    76               RenderMathMLBlock (anonymous, block) at (0,12) size 33x14 [padding: 2 3 0 3]
    77                 RenderInline {mn} at (0,0) size 9x24
    78                   RenderText {#text} at (12,-4) size 9x24
    79                     text run at (12,-4) width 9: "2"
     73                    RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     74                      RenderBlock (anonymous) at (0,0) size 11x10
     75                        RenderText {mo} at (0,-8) size 11x24
     76                          text run at (0,-8) width 11: "+"
     77                  RenderBlock {mn} at (19,0) size 8x12
     78                    RenderText {#text} at (0,-6) size 8x24
     79                      text run at (0,-6) width 8: "1"
     80              RenderMathMLBlock (anonymous, flex) at (0,12) size 33x14 [padding: 2 3 0 3]
     81                RenderBlock {mn} at (12,2) size 8x12
     82                  RenderText {#text} at (0,-6) size 8x24
     83                    text run at (0,-6) width 8: "2"
    8084          RenderText {#text} at (0,0) size 0x0
    81       RenderBlock {div} at (0,218) size 784x259
     85      RenderBlock {div} at (0,218) size 784x263
    8286        RenderBlock {h2} at (0,0) size 784x28
    8387          RenderText {#text} at (0,0) size 210x28
     
    8892          RenderMathMLMath {math} at (27,0) size 66x35 [padding: 0 1 0 1]
    8993            RenderMathMLOperator {mo} at (1,0) size 6x35 [padding: 0 1 0 0]
    90             RenderInline {mi} at (0,0) size 7x24
    91               RenderText {#text} at (7,0) size 7x24
    92                 text run at (7,0) width 7: "x"
     94            RenderBlock {mi} at (7,9) size 7x9
     95              RenderText {#text} at (0,-9) size 7x24
     96                text run at (0,-9) width 7: "x"
    9397            RenderMathMLOperator {mo} at (14,8) size 12x10 [padding: 0 1 0 0]
    94               RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    95                 RenderText {mo} at (0,-8) size 11x24
    96                   text run at (0,-8) width 11: "+"
     98              RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     99                RenderBlock (anonymous) at (0,0) size 11x10
     100                  RenderText {mo} at (0,-8) size 11x24
     101                    text run at (0,-8) width 11: "+"
    97102            RenderMathMLFraction {mfrac} at (26,0) size 33x26
    98               RenderMathMLBlock (anonymous, block) at (0,0) size 33x12 [padding: 0 3 0 3]
     103              RenderMathMLBlock (anonymous, flex) at (0,0) size 33x12 [padding: 0 3 0 3]
    99104                RenderMathMLRow {mrow} at (3,0) size 27x12
    100                   RenderInline {mi} at (0,0) size 7x24
    101                     RenderText {#text} at (0,-6) size 7x24
    102                       text run at (0,-6) width 7: "x"
     105                  RenderBlock {mi} at (0,3) size 7x9
     106                    RenderText {#text} at (0,-9) size 7x24
     107                      text run at (0,-9) width 7: "x"
    103108                  RenderMathMLOperator {mo} at (7,2) size 12x10 [padding: 0 1 0 0]
    104                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    105                       RenderText {mo} at (0,-8) size 11x24
    106                         text run at (0,-8) width 11: "+"
    107                   RenderInline {mn} at (0,0) size 8x24
    108                     RenderText {#text} at (19,-6) size 8x24
    109                       text run at (19,-6) width 8: "1"
    110               RenderMathMLBlock (anonymous, block) at (0,12) size 33x14 [padding: 2 3 0 3]
    111                 RenderInline {mn} at (0,0) size 9x24
    112                   RenderText {#text} at (12,-4) size 9x24
    113                     text run at (12,-4) width 9: "2"
     109                    RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     110                      RenderBlock (anonymous) at (0,0) size 11x10
     111                        RenderText {mo} at (0,-8) size 11x24
     112                          text run at (0,-8) width 11: "+"
     113                  RenderBlock {mn} at (19,0) size 8x12
     114                    RenderText {#text} at (0,-6) size 8x24
     115                      text run at (0,-6) width 8: "1"
     116              RenderMathMLBlock (anonymous, flex) at (0,12) size 33x14 [padding: 2 3 0 3]
     117                RenderBlock {mn} at (12,2) size 8x12
     118                  RenderText {#text} at (0,-6) size 8x24
     119                    text run at (0,-6) width 8: "2"
    114120            RenderMathMLOperator {mo} at (59,0) size 6x35 [padding: 0 1 0 0]
    115121          RenderText {#text} at (0,0) size 0x0
     
    118124            text run at (0,23) width 27: "text "
    119125          RenderMathMLMath {math} at (27,0) size 92x68 [padding: 0 1 0 1]
    120             RenderInline {mi} at (0,0) size 7x24
    121               RenderText {#text} at (1,20) size 7x24
    122                 text run at (1,20) width 7: "y"
     126            RenderBlock {mi} at (1,29) size 7x12
     127              RenderText {#text} at (0,-9) size 7x24
     128                text run at (0,-9) width 7: "y"
    123129            RenderMathMLOperator {mo} at (8,0) size 6x68 [padding: 0 1 0 0]
    124130            RenderMathMLUnderOver {munder} at (14,25) size 13x23
    125               RenderMathMLBlock (anonymous, block) at (0,0) size 13x16
    126                 RenderInline {mi} at (0,0) size 13x24
    127                   RenderText {#text} at (0,-5) size 13x24
    128                     text run at (0,-5) width 13: "\x{220F}"
    129               RenderMathMLBlock (anonymous, block) at (0,16) size 13x7
    130                 RenderInline {mi} at (0,0) size 5x18
    131                   RenderText {#text} at (4,-7) size 5x18
    132                     text run at (4,-7) width 5: "x"
     131              RenderBlock {mi} at (0,0) size 13x16
     132                RenderText {#text} at (0,-5) size 13x24
     133                  text run at (0,-5) width 13: "\x{220F}"
     134              RenderBlock {mi} at (4,16) size 5x7
     135                RenderText {#text} at (0,-7) size 5x18
     136                  text run at (0,-7) width 5: "x"
    133137            RenderMathMLFraction {mfrac} at (27,6) size 58x54
    134               RenderMathMLBlock (anonymous, block) at (0,0) size 58x26 [padding: 0 3 0 3]
     138              RenderMathMLBlock (anonymous, flex) at (0,0) size 58x26 [padding: 0 3 0 3]
    135139                RenderMathMLRow {mrow} at (3,0) size 52x26
    136                   RenderInline {mi} at (0,0) size 7x24
    137                     RenderText {#text} at (0,0) size 7x24
    138                       text run at (0,0) width 7: "x"
     140                  RenderBlock {mi} at (0,9) size 7x9
     141                    RenderText {#text} at (0,-9) size 7x24
     142                      text run at (0,-9) width 7: "x"
    139143                  RenderMathMLOperator {mo} at (7,8) size 12x10 [padding: 0 1 0 0]
    140                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    141                       RenderText {mo} at (0,-8) size 11x24
    142                         text run at (0,-8) width 11: "+"
     144                    RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     145                      RenderBlock (anonymous) at (0,0) size 11x10
     146                        RenderText {mo} at (0,-8) size 11x24
     147                          text run at (0,-8) width 11: "+"
    143148                  RenderMathMLFraction {mfrac} at (19,0) size 33x26
    144                     RenderMathMLBlock (anonymous, block) at (0,0) size 33x12 [padding: 0 3 0 3]
     149                    RenderMathMLBlock (anonymous, flex) at (0,0) size 33x12 [padding: 0 3 0 3]
    145150                      RenderMathMLRow {mrow} at (3,0) size 27x12
    146                         RenderInline {mi} at (0,0) size 7x24
    147                           RenderText {#text} at (0,-6) size 7x24
    148                             text run at (0,-6) width 7: "x"
     151                        RenderBlock {mi} at (0,3) size 7x9
     152                          RenderText {#text} at (0,-9) size 7x24
     153                            text run at (0,-9) width 7: "x"
    149154                        RenderMathMLOperator {mo} at (7,2) size 12x10 [padding: 0 1 0 0]
    150                           RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    151                             RenderText {mo} at (0,-8) size 11x24
    152                               text run at (0,-8) width 11: "+"
    153                         RenderInline {mn} at (0,0) size 8x24
    154                           RenderText {#text} at (19,-6) size 8x24
    155                             text run at (19,-6) width 8: "1"
    156                     RenderMathMLBlock (anonymous, block) at (0,12) size 33x14 [padding: 2 3 0 3]
    157                       RenderInline {mn} at (0,0) size 9x24
    158                         RenderText {#text} at (12,-4) size 9x24
    159                           text run at (12,-4) width 9: "2"
    160               RenderMathMLBlock (anonymous, block) at (0,26) size 58x28 [padding: 2 3 0 3]
     155                          RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     156                            RenderBlock (anonymous) at (0,0) size 11x10
     157                              RenderText {mo} at (0,-8) size 11x24
     158                                text run at (0,-8) width 11: "+"
     159                        RenderBlock {mn} at (19,0) size 8x12
     160                          RenderText {#text} at (0,-6) size 8x24
     161                            text run at (0,-6) width 8: "1"
     162                    RenderMathMLBlock (anonymous, flex) at (0,12) size 33x14 [padding: 2 3 0 3]
     163                      RenderBlock {mn} at (12,2) size 8x12
     164                        RenderText {#text} at (0,-6) size 8x24
     165                          text run at (0,-6) width 8: "2"
     166              RenderMathMLBlock (anonymous, flex) at (0,26) size 58x28 [padding: 2 3 0 3]
    161167                RenderMathMLRow {mrow} at (3,2) size 52x26
    162                   RenderInline {mi} at (0,0) size 7x24
    163                     RenderText {#text} at (0,0) size 7x24
    164                       text run at (0,0) width 7: "x"
     168                  RenderBlock {mi} at (0,9) size 7x9
     169                    RenderText {#text} at (0,-9) size 7x24
     170                      text run at (0,-9) width 7: "x"
    165171                  RenderMathMLOperator {mo} at (7,8) size 12x10 [padding: 0 1 0 0]
    166                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    167                       RenderText {mo} at (0,-8) size 11x24
    168                         text run at (0,-8) width 11: "+"
     172                    RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     173                      RenderBlock (anonymous) at (0,0) size 11x10
     174                        RenderText {mo} at (0,-8) size 11x24
     175                          text run at (0,-8) width 11: "+"
    169176                  RenderMathMLFraction {mfrac} at (19,0) size 33x26
    170                     RenderMathMLBlock (anonymous, block) at (0,0) size 33x12 [padding: 0 3 0 3]
     177                    RenderMathMLBlock (anonymous, flex) at (0,0) size 33x12 [padding: 0 3 0 3]
    171178                      RenderMathMLRow {mrow} at (3,0) size 27x12
    172                         RenderInline {mi} at (0,0) size 7x24
    173                           RenderText {#text} at (0,-6) size 7x24
    174                             text run at (0,-6) width 7: "x"
     179                        RenderBlock {mi} at (0,3) size 7x9
     180                          RenderText {#text} at (0,-9) size 7x24
     181                            text run at (0,-9) width 7: "x"
    175182                        RenderMathMLOperator {mo} at (7,2) size 12x10 [padding: 0 1 0 0]
    176                           RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    177                             RenderText {mo} at (0,-8) size 11x24
    178                               text run at (0,-8) width 11: "+"
    179                         RenderInline {mn} at (0,0) size 8x24
    180                           RenderText {#text} at (19,-6) size 8x24
    181                             text run at (19,-6) width 8: "1"
    182                     RenderMathMLBlock (anonymous, block) at (0,12) size 33x14 [padding: 2 3 0 3]
    183                       RenderInline {mn} at (0,0) size 9x24
    184                         RenderText {#text} at (12,-4) size 9x24
    185                           text run at (12,-4) width 9: "2"
     183                          RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     184                            RenderBlock (anonymous) at (0,0) size 11x10
     185                              RenderText {mo} at (0,-8) size 11x24
     186                                text run at (0,-8) width 11: "+"
     187                        RenderBlock {mn} at (19,0) size 8x12
     188                          RenderText {#text} at (0,-6) size 8x24
     189                            text run at (0,-6) width 8: "1"
     190                    RenderMathMLBlock (anonymous, flex) at (0,12) size 33x14 [padding: 2 3 0 3]
     191                      RenderBlock {mn} at (12,2) size 8x12
     192                        RenderText {#text} at (0,-6) size 8x24
     193                          text run at (0,-6) width 8: "2"
    186194            RenderMathMLOperator {mo} at (85,0) size 6x68 [padding: 0 1 0 0]
    187195          RenderText {#text} at (0,0) size 0x0
    188         RenderBlock {p} at (0,182) size 784x77
    189           RenderText {#text} at (0,28) size 27x18
    190             text run at (0,28) width 27: "text "
    191           RenderMathMLMath {math} at (27,0) size 92x77 [padding: 0 1 0 1]
    192             RenderMathMLOperator {mo} at (1,0) size 6x77 [padding: 0 1 0 0]
    193             RenderTable {mtable} at (7,9) size 78x60
    194               RenderTableSection (anonymous) at (0,0) size 78x60
    195                 RenderTableRow {mtr} at (0,0) size 78x19
    196                   RenderTableCell {mtd} at (0,0) size 26x19 [r=0 c=0 rs=1 cs=1]
    197                     RenderMathMLSubSup {msub} at (3,3) size 20x13
    198                       RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    199                         RenderInline {mi} at (0,0) size 8x24
     196        RenderBlock {p} at (0,182) size 784x81
     197          RenderText {#text} at (0,30) size 27x18
     198            text run at (0,30) width 27: "text "
     199          RenderMathMLMath {math} at (27,0) size 92x81 [padding: 0 1 0 1]
     200            RenderMathMLOperator {mo} at (1,0) size 6x81 [padding: 0 1 0 0]
     201            RenderMathMLTable {mtable} at (7,9) size 78x64
     202              RenderTableSection (anonymous) at (0,0) size 78x64
     203                RenderTableRow {mtr} at (0,0) size 78x20
     204                  RenderTableCell {mtd} at (0,0) size 26x20 [r=0 c=0 rs=1 cs=1]
     205                    RenderMathMLSubSup {msub} at (3,3) size 20x14
     206                      RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     207                        RenderBlock {mi} at (0,0) size 8x9
    200208                          RenderText {#text} at (0,-9) size 8x24
    201209                            text run at (0,-9) width 8: "a"
    202                       RenderInline {mn} at (0,0) size 12x18
    203                         RenderText {#text} at (8,-1) size 12x18
    204                           text run at (8,-1) width 12: "11"
    205                   RenderTableCell {mtd} at (26,0) size 26x19 [r=0 c=1 rs=1 cs=1]
    206                     RenderMathMLSubSup {msub} at (3,3) size 20x13
    207                       RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    208                         RenderInline {mi} at (0,0) size 8x24
     210                      RenderMathMLBlock (anonymous, flex) at (8,0) size 12x14
     211                        RenderBlock {mn} at (0,4) size 12x10
     212                          RenderText {#text} at (0,-4) size 12x18
     213                            text run at (0,-4) width 12: "11"
     214                  RenderTableCell {mtd} at (26,0) size 26x20 [r=0 c=1 rs=1 cs=1]
     215                    RenderMathMLSubSup {msub} at (3,3) size 20x14
     216                      RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     217                        RenderBlock {mi} at (0,0) size 8x9
    209218                          RenderText {#text} at (0,-9) size 8x24
    210219                            text run at (0,-9) width 8: "a"
    211                       RenderInline {mn} at (0,0) size 12x18
    212                         RenderText {#text} at (8,-1) size 12x18
    213                           text run at (8,-1) width 12: "12"
    214                   RenderTableCell {mtd} at (52,0) size 26x19 [r=0 c=2 rs=1 cs=1]
    215                     RenderMathMLSubSup {msub} at (3,3) size 20x13
    216                       RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    217                         RenderInline {mi} at (0,0) size 8x24
     220                      RenderMathMLBlock (anonymous, flex) at (8,0) size 12x14
     221                        RenderBlock {mn} at (0,4) size 12x10
     222                          RenderText {#text} at (0,-4) size 12x18
     223                            text run at (0,-4) width 12: "12"
     224                  RenderTableCell {mtd} at (52,0) size 26x20 [r=0 c=2 rs=1 cs=1]
     225                    RenderMathMLSubSup {msub} at (3,3) size 20x14
     226                      RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     227                        RenderBlock {mi} at (0,0) size 8x9
    218228                          RenderText {#text} at (0,-9) size 8x24
    219229                            text run at (0,-9) width 8: "a"
    220                       RenderInline {mn} at (0,0) size 12x18
    221                         RenderText {#text} at (8,-1) size 12x18
    222                           text run at (8,-1) width 12: "13"
    223                 RenderTableRow {mtr} at (0,19) size 78x22
    224                   RenderTableCell {mtd} at (0,19) size 26x22 [r=1 c=0 rs=1 cs=1]
    225                     RenderMathMLSubSup {msub} at (3,3) size 20x16
    226                       RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    227                         RenderInline {mi} at (0,0) size 8x24
     230                      RenderMathMLBlock (anonymous, flex) at (8,0) size 12x14
     231                        RenderBlock {mn} at (0,4) size 12x10
     232                          RenderText {#text} at (0,-4) size 12x18
     233                            text run at (0,-4) width 12: "13"
     234                RenderTableRow {mtr} at (0,20) size 78x24
     235                  RenderTableCell {mtd} at (0,20) size 26x24 [r=1 c=0 rs=1 cs=1]
     236                    RenderMathMLSubSup {msub} at (3,3) size 20x18
     237                      RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     238                        RenderBlock {mi} at (0,0) size 8x12
    228239                          RenderText {#text} at (0,-6) size 8x24
    229240                            text run at (0,-6) width 8: "b"
    230                       RenderInline {mn} at (0,0) size 12x18
    231                         RenderText {#text} at (8,2) size 12x18
    232                           text run at (8,2) width 12: "21"
    233                   RenderTableCell {mtd} at (26,19) size 26x22 [r=1 c=1 rs=1 cs=1]
    234                     RenderMathMLSubSup {msub} at (3,3) size 20x16
    235                       RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    236                         RenderInline {mi} at (0,0) size 8x24
     241                      RenderMathMLBlock (anonymous, flex) at (8,0) size 12x18
     242                        RenderBlock {mn} at (0,8) size 12x10
     243                          RenderText {#text} at (0,-4) size 12x18
     244                            text run at (0,-4) width 12: "21"
     245                  RenderTableCell {mtd} at (26,20) size 26x24 [r=1 c=1 rs=1 cs=1]
     246                    RenderMathMLSubSup {msub} at (3,3) size 20x18
     247                      RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     248                        RenderBlock {mi} at (0,0) size 8x12
    237249                          RenderText {#text} at (0,-6) size 8x24
    238250                            text run at (0,-6) width 8: "b"
    239                       RenderInline {mn} at (0,0) size 12x18
    240                         RenderText {#text} at (8,2) size 12x18
    241                           text run at (8,2) width 12: "22"
    242                   RenderTableCell {mtd} at (52,19) size 26x22 [r=1 c=2 rs=1 cs=1]
    243                     RenderMathMLSubSup {msub} at (3,3) size 20x16
    244                       RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    245                         RenderInline {mi} at (0,0) size 8x24
     251                      RenderMathMLBlock (anonymous, flex) at (8,0) size 12x18
     252                        RenderBlock {mn} at (0,8) size 12x10
     253                          RenderText {#text} at (0,-4) size 12x18
     254                            text run at (0,-4) width 12: "22"
     255                  RenderTableCell {mtd} at (52,20) size 26x24 [r=1 c=2 rs=1 cs=1]
     256                    RenderMathMLSubSup {msub} at (3,3) size 20x18
     257                      RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     258                        RenderBlock {mi} at (0,0) size 8x12
    246259                          RenderText {#text} at (0,-6) size 8x24
    247260                            text run at (0,-6) width 8: "b"
    248                       RenderInline {mn} at (0,0) size 12x18
    249                         RenderText {#text} at (8,2) size 12x18
    250                           text run at (8,2) width 12: "23"
    251                 RenderTableRow {mtr} at (0,41) size 78x19
    252                   RenderTableCell {mtd} at (0,41) size 26x19 [r=2 c=0 rs=1 cs=1]
    253                     RenderMathMLSubSup {msub} at (4,3) size 19x13
    254                       RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    255                         RenderInline {mi} at (0,0) size 7x24
     261                      RenderMathMLBlock (anonymous, flex) at (8,0) size 12x18
     262                        RenderBlock {mn} at (0,8) size 12x10
     263                          RenderText {#text} at (0,-4) size 12x18
     264                            text run at (0,-4) width 12: "23"
     265                RenderTableRow {mtr} at (0,44) size 78x20
     266                  RenderTableCell {mtd} at (0,44) size 26x20 [r=2 c=0 rs=1 cs=1]
     267                    RenderMathMLSubSup {msub} at (4,3) size 19x14
     268                      RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     269                        RenderBlock {mi} at (0,0) size 7x9
    256270                          RenderText {#text} at (0,-9) size 7x24
    257271                            text run at (0,-9) width 7: "c"
    258                       RenderInline {mn} at (0,0) size 12x18
    259                         RenderText {#text} at (7,-1) size 12x18
    260                           text run at (7,-1) width 12: "31"
    261                   RenderTableCell {mtd} at (26,41) size 26x19 [r=2 c=1 rs=1 cs=1]
    262                     RenderMathMLSubSup {msub} at (4,3) size 19x13
    263                       RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    264                         RenderInline {mi} at (0,0) size 7x24
     272                      RenderMathMLBlock (anonymous, flex) at (7,0) size 12x14
     273                        RenderBlock {mn} at (0,4) size 12x10
     274                          RenderText {#text} at (0,-4) size 12x18
     275                            text run at (0,-4) width 12: "31"
     276                  RenderTableCell {mtd} at (26,44) size 26x20 [r=2 c=1 rs=1 cs=1]
     277                    RenderMathMLSubSup {msub} at (4,3) size 19x14
     278                      RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     279                        RenderBlock {mi} at (0,0) size 7x9
    265280                          RenderText {#text} at (0,-9) size 7x24
    266281                            text run at (0,-9) width 7: "c"
    267                       RenderInline {mn} at (0,0) size 12x18
    268                         RenderText {#text} at (7,-1) size 12x18
    269                           text run at (7,-1) width 12: "32"
    270                   RenderTableCell {mtd} at (52,41) size 26x19 [r=2 c=2 rs=1 cs=1]
    271                     RenderMathMLSubSup {msub} at (4,3) size 19x13
    272                       RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    273                         RenderInline {mi} at (0,0) size 7x24
     282                      RenderMathMLBlock (anonymous, flex) at (7,0) size 12x14
     283                        RenderBlock {mn} at (0,4) size 12x10
     284                          RenderText {#text} at (0,-4) size 12x18
     285                            text run at (0,-4) width 12: "32"
     286                  RenderTableCell {mtd} at (52,44) size 26x20 [r=2 c=2 rs=1 cs=1]
     287                    RenderMathMLSubSup {msub} at (4,3) size 19x14
     288                      RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     289                        RenderBlock {mi} at (0,0) size 7x9
    274290                          RenderText {#text} at (0,-9) size 7x24
    275291                            text run at (0,-9) width 7: "c"
    276                       RenderInline {mn} at (0,0) size 12x18
    277                         RenderText {#text} at (7,-1) size 12x18
    278                           text run at (7,-1) width 12: "33"
    279             RenderMathMLOperator {mo} at (85,0) size 6x77 [padding: 0 1 0 0]
     292                      RenderMathMLBlock (anonymous, flex) at (7,0) size 12x14
     293                        RenderBlock {mn} at (0,4) size 12x10
     294                          RenderText {#text} at (0,-4) size 12x18
     295                            text run at (0,-4) width 12: "33"
     296            RenderMathMLOperator {mo} at (85,0) size 6x81 [padding: 0 1 0 0]
    280297          RenderText {#text} at (0,0) size 0x0
    281298layer at (36,284) size 5x10 scrollHeight 18
    282   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
     299  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     300    RenderBlock (anonymous) at (0,0) size 5x10
    283301layer at (36,294) size 5x10 scrollHeight 17
    284   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    285     RenderText {mo} at (0,-4) size 5x21
    286       text run at (0,-4) width 5: "\x{239C}"
     302  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     303    RenderBlock (anonymous) at (0,0) size 5x10
     304      RenderText {mo} at (0,-4) size 5x21
     305        text run at (0,-4) width 5: "\x{239C}"
    287306layer at (36,304) size 5x1 scrollHeight 17
    288   RenderMathMLBlock (block) {mo} at (0,20) size 5x1
    289     RenderText {mo} at (0,-4) size 5x21
    290       text run at (0,-4) width 5: "\x{239C}"
     307  RenderMathMLBlock (flex) {mo} at (0,20) size 5x1
     308    RenderBlock (anonymous) at (0,0) size 5x1
     309      RenderText {mo} at (0,-4) size 5x21
     310        text run at (0,-4) width 5: "\x{239C}"
    291311layer at (36,305) size 5x14 scrollHeight 17
    292   RenderMathMLBlock (block) {mo} at (0,21) size 5x14
     312  RenderMathMLBlock (flex) {mo} at (0,21) size 5x14
     313    RenderBlock (anonymous) at (0,0) size 5x14
    293314layer at (94,284) size 5x10 scrollHeight 18
    294   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
     315  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     316    RenderBlock (anonymous) at (0,0) size 5x10
    295317layer at (94,294) size 5x10 scrollHeight 17
    296   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    297     RenderText {mo} at (0,-4) size 5x21
    298       text run at (0,-4) width 5: "\x{239F}"
     318  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     319    RenderBlock (anonymous) at (0,0) size 5x10
     320      RenderText {mo} at (0,-4) size 5x21
     321        text run at (0,-4) width 5: "\x{239F}"
    299322layer at (94,304) size 5x1 scrollHeight 17
    300   RenderMathMLBlock (block) {mo} at (0,20) size 5x1
    301     RenderText {mo} at (0,-4) size 5x21
    302       text run at (0,-4) width 5: "\x{239F}"
     323  RenderMathMLBlock (flex) {mo} at (0,20) size 5x1
     324    RenderBlock (anonymous) at (0,0) size 5x1
     325      RenderText {mo} at (0,-4) size 5x21
     326        text run at (0,-4) width 5: "\x{239F}"
    303327layer at (94,305) size 5x14 scrollHeight 17
    304   RenderMathMLBlock (block) {mo} at (0,21) size 5x14
     328  RenderMathMLBlock (flex) {mo} at (0,21) size 5x14
     329    RenderBlock (anonymous) at (0,0) size 5x14
    305330layer at (43,335) size 5x10 scrollHeight 18
    306   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
     331  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     332    RenderBlock (anonymous) at (0,0) size 5x10
    307333layer at (43,345) size 5x10 scrollHeight 17
    308   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    309     RenderText {mo} at (0,-4) size 5x21
    310       text run at (0,-4) width 5: "\x{239C}"
     334  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     335    RenderBlock (anonymous) at (0,0) size 5x10
     336      RenderText {mo} at (0,-4) size 5x21
     337        text run at (0,-4) width 5: "\x{239C}"
    311338layer at (43,355) size 5x10 scrollHeight 17
    312   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    313     RenderText {mo} at (0,-4) size 5x21
    314       text run at (0,-4) width 5: "\x{239C}"
     339  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     340    RenderBlock (anonymous) at (0,0) size 5x10
     341      RenderText {mo} at (0,-4) size 5x21
     342        text run at (0,-4) width 5: "\x{239C}"
    315343layer at (43,365) size 5x10 scrollHeight 17
    316   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    317     RenderText {mo} at (0,-4) size 5x21
    318       text run at (0,-4) width 5: "\x{239C}"
     344  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     345    RenderBlock (anonymous) at (0,0) size 5x10
     346      RenderText {mo} at (0,-4) size 5x21
     347        text run at (0,-4) width 5: "\x{239C}"
    319348layer at (43,375) size 5x10 scrollHeight 17
    320   RenderMathMLBlock (block) {mo} at (0,40) size 5x10
    321     RenderText {mo} at (0,-4) size 5x21
    322       text run at (0,-4) width 5: "\x{239C}"
     349  RenderMathMLBlock (flex) {mo} at (0,40) size 5x10
     350    RenderBlock (anonymous) at (0,0) size 5x10
     351      RenderText {mo} at (0,-4) size 5x21
     352        text run at (0,-4) width 5: "\x{239C}"
    323353layer at (43,385) size 5x4 scrollHeight 17
    324   RenderMathMLBlock (block) {mo} at (0,50) size 5x4
    325     RenderText {mo} at (0,-4) size 5x21
    326       text run at (0,-4) width 5: "\x{239C}"
     354  RenderMathMLBlock (flex) {mo} at (0,50) size 5x4
     355    RenderBlock (anonymous) at (0,0) size 5x4
     356      RenderText {mo} at (0,-4) size 5x21
     357        text run at (0,-4) width 5: "\x{239C}"
    327358layer at (43,389) size 5x14 scrollHeight 17
    328   RenderMathMLBlock (block) {mo} at (0,54) size 5x14
     359  RenderMathMLBlock (flex) {mo} at (0,54) size 5x14
     360    RenderBlock (anonymous) at (0,0) size 5x14
    329361layer at (120,335) size 5x10 scrollHeight 18
    330   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
     362  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     363    RenderBlock (anonymous) at (0,0) size 5x10
    331364layer at (120,345) size 5x10 scrollHeight 17
    332   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    333     RenderText {mo} at (0,-4) size 5x21
    334       text run at (0,-4) width 5: "\x{239F}"
     365  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     366    RenderBlock (anonymous) at (0,0) size 5x10
     367      RenderText {mo} at (0,-4) size 5x21
     368        text run at (0,-4) width 5: "\x{239F}"
    335369layer at (120,355) size 5x10 scrollHeight 17
    336   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    337     RenderText {mo} at (0,-4) size 5x21
    338       text run at (0,-4) width 5: "\x{239F}"
     370  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     371    RenderBlock (anonymous) at (0,0) size 5x10
     372      RenderText {mo} at (0,-4) size 5x21
     373        text run at (0,-4) width 5: "\x{239F}"
    339374layer at (120,365) size 5x10 scrollHeight 17
    340   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    341     RenderText {mo} at (0,-4) size 5x21
    342       text run at (0,-4) width 5: "\x{239F}"
     375  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     376    RenderBlock (anonymous) at (0,0) size 5x10
     377      RenderText {mo} at (0,-4) size 5x21
     378        text run at (0,-4) width 5: "\x{239F}"
    343379layer at (120,375) size 5x10 scrollHeight 17
    344   RenderMathMLBlock (block) {mo} at (0,40) size 5x10
    345     RenderText {mo} at (0,-4) size 5x21
    346       text run at (0,-4) width 5: "\x{239F}"
     380  RenderMathMLBlock (flex) {mo} at (0,40) size 5x10
     381    RenderBlock (anonymous) at (0,0) size 5x10
     382      RenderText {mo} at (0,-4) size 5x21
     383        text run at (0,-4) width 5: "\x{239F}"
    347384layer at (120,385) size 5x4 scrollHeight 17
    348   RenderMathMLBlock (block) {mo} at (0,50) size 5x4
    349     RenderText {mo} at (0,-4) size 5x21
    350       text run at (0,-4) width 5: "\x{239F}"
     385  RenderMathMLBlock (flex) {mo} at (0,50) size 5x4
     386    RenderBlock (anonymous) at (0,0) size 5x4
     387      RenderText {mo} at (0,-4) size 5x21
     388        text run at (0,-4) width 5: "\x{239F}"
    351389layer at (120,389) size 5x14 scrollHeight 17
    352   RenderMathMLBlock (block) {mo} at (0,54) size 5x14
     390  RenderMathMLBlock (flex) {mo} at (0,54) size 5x14
     391    RenderBlock (anonymous) at (0,0) size 5x14
    353392layer at (36,419) size 5x10 scrollHeight 18
    354   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
     393  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     394    RenderBlock (anonymous) at (0,0) size 5x10
    355395layer at (36,429) size 5x10 scrollHeight 17
    356   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    357     RenderText {mo} at (0,-4) size 5x21
    358       text run at (0,-4) width 5: "\x{23A2}"
     396  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     397    RenderBlock (anonymous) at (0,0) size 5x10
     398      RenderText {mo} at (0,-4) size 5x21
     399        text run at (0,-4) width 5: "\x{23A2}"
    359400layer at (36,439) size 5x10 scrollHeight 17
    360   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    361     RenderText {mo} at (0,-4) size 5x21
    362       text run at (0,-4) width 5: "\x{23A2}"
     401  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     402    RenderBlock (anonymous) at (0,0) size 5x10
     403      RenderText {mo} at (0,-4) size 5x21
     404        text run at (0,-4) width 5: "\x{23A2}"
    363405layer at (36,449) size 5x10 scrollHeight 17
    364   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    365     RenderText {mo} at (0,-4) size 5x21
    366       text run at (0,-4) width 5: "\x{23A2}"
     406  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     407    RenderBlock (anonymous) at (0,0) size 5x10
     408      RenderText {mo} at (0,-4) size 5x21
     409        text run at (0,-4) width 5: "\x{23A2}"
    367410layer at (36,459) size 5x10 scrollHeight 17
    368   RenderMathMLBlock (block) {mo} at (0,40) size 5x10
    369     RenderText {mo} at (0,-4) size 5x21
    370       text run at (0,-4) width 5: "\x{23A2}"
     411  RenderMathMLBlock (flex) {mo} at (0,40) size 5x10
     412    RenderBlock (anonymous) at (0,0) size 5x10
     413      RenderText {mo} at (0,-4) size 5x21
     414        text run at (0,-4) width 5: "\x{23A2}"
    371415layer at (36,469) size 5x10 scrollHeight 17
    372   RenderMathMLBlock (block) {mo} at (0,50) size 5x10
    373     RenderText {mo} at (0,-4) size 5x21
    374       text run at (0,-4) width 5: "\x{23A2}"
    375 layer at (36,479) size 5x2 scrollHeight 17
    376   RenderMathMLBlock (block) {mo} at (0,60) size 5x2
    377     RenderText {mo} at (0,-4) size 5x21
    378       text run at (0,-4) width 5: "\x{23A2}"
    379 layer at (36,481) size 5x15 scrollHeight 17
    380   RenderMathMLBlock (block) {mo} at (0,62) size 5x15
     416  RenderMathMLBlock (flex) {mo} at (0,50) size 5x10
     417    RenderBlock (anonymous) at (0,0) size 5x10
     418      RenderText {mo} at (0,-4) size 5x21
     419        text run at (0,-4) width 5: "\x{23A2}"
     420layer at (36,479) size 5x6 scrollHeight 17
     421  RenderMathMLBlock (flex) {mo} at (0,60) size 5x6
     422    RenderBlock (anonymous) at (0,0) size 5x6
     423      RenderText {mo} at (0,-4) size 5x21
     424        text run at (0,-4) width 5: "\x{23A2}"
     425layer at (36,485) size 5x15 scrollHeight 17
     426  RenderMathMLBlock (flex) {mo} at (0,66) size 5x15
     427    RenderBlock (anonymous) at (0,0) size 5x15
    381428layer at (120,419) size 5x10 scrollHeight 18
    382   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
     429  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     430    RenderBlock (anonymous) at (0,0) size 5x10
    383431layer at (120,429) size 5x10 scrollHeight 17
    384   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    385     RenderText {mo} at (0,-4) size 5x21
    386       text run at (0,-4) width 5: "\x{23A5}"
     432  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     433    RenderBlock (anonymous) at (0,0) size 5x10
     434      RenderText {mo} at (0,-4) size 5x21
     435        text run at (0,-4) width 5: "\x{23A5}"
    387436layer at (120,439) size 5x10 scrollHeight 17
    388   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    389     RenderText {mo} at (0,-4) size 5x21
    390       text run at (0,-4) width 5: "\x{23A5}"
     437  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     438    RenderBlock (anonymous) at (0,0) size 5x10
     439      RenderText {mo} at (0,-4) size 5x21
     440        text run at (0,-4) width 5: "\x{23A5}"
    391441layer at (120,449) size 5x10 scrollHeight 17
    392   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    393     RenderText {mo} at (0,-4) size 5x21
    394       text run at (0,-4) width 5: "\x{23A5}"
     442  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     443    RenderBlock (anonymous) at (0,0) size 5x10
     444      RenderText {mo} at (0,-4) size 5x21
     445        text run at (0,-4) width 5: "\x{23A5}"
    395446layer at (120,459) size 5x10 scrollHeight 17
    396   RenderMathMLBlock (block) {mo} at (0,40) size 5x10
    397     RenderText {mo} at (0,-4) size 5x21
    398       text run at (0,-4) width 5: "\x{23A5}"
     447  RenderMathMLBlock (flex) {mo} at (0,40) size 5x10
     448    RenderBlock (anonymous) at (0,0) size 5x10
     449      RenderText {mo} at (0,-4) size 5x21
     450        text run at (0,-4) width 5: "\x{23A5}"
    399451layer at (120,469) size 5x10 scrollHeight 17
    400   RenderMathMLBlock (block) {mo} at (0,50) size 5x10
    401     RenderText {mo} at (0,-4) size 5x21
    402       text run at (0,-4) width 5: "\x{23A5}"
    403 layer at (120,479) size 5x2 scrollHeight 17
    404   RenderMathMLBlock (block) {mo} at (0,60) size 5x2
    405     RenderText {mo} at (0,-4) size 5x21
    406       text run at (0,-4) width 5: "\x{23A5}"
    407 layer at (120,481) size 5x15 scrollHeight 17
    408   RenderMathMLBlock (block) {mo} at (0,62) size 5x15
     452  RenderMathMLBlock (flex) {mo} at (0,50) size 5x10
     453    RenderBlock (anonymous) at (0,0) size 5x10
     454      RenderText {mo} at (0,-4) size 5x21
     455        text run at (0,-4) width 5: "\x{23A5}"
     456layer at (120,479) size 5x6 scrollHeight 17
     457  RenderMathMLBlock (flex) {mo} at (0,60) size 5x6
     458    RenderBlock (anonymous) at (0,0) size 5x6
     459      RenderText {mo} at (0,-4) size 5x21
     460        text run at (0,-4) width 5: "\x{23A5}"
     461layer at (120,485) size 5x15 scrollHeight 17
     462  RenderMathMLBlock (flex) {mo} at (0,66) size 5x15
     463    RenderBlock (anonymous) at (0,0) size 5x15
    409464layer at (36,285) size 5x15 backgroundClip at (36,284) size 5x10 clip at (36,284) size 5x10 outlineClip at (36,284) size 5x10
    410465  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
     
    443498    RenderText {mo} at (0,-4) size 5x21
    444499      text run at (0,-4) width 5: "\x{23A1}"
    445 layer at (36,478) size 5x15 backgroundClip at (36,481) size 5x15 clip at (36,481) size 5x15 outlineClip at (36,481) size 5x15
     500layer at (36,482) size 5x15 backgroundClip at (36,485) size 5x15 clip at (36,485) size 5x15 outlineClip at (36,485) size 5x15
    446501  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    447502    RenderText {mo} at (0,-4) size 5x21
     
    451506    RenderText {mo} at (0,-4) size 5x21
    452507      text run at (0,-4) width 5: "\x{23A4}"
    453 layer at (120,478) size 5x15 backgroundClip at (120,481) size 5x15 clip at (120,481) size 5x15 outlineClip at (120,481) size 5x15
     508layer at (120,482) size 5x15 backgroundClip at (120,485) size 5x15 clip at (120,485) size 5x15 outlineClip at (120,485) size 5x15
    454509  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    455510    RenderText {mo} at (0,-4) size 5x21
  • trunk/LayoutTests/platform/mac/mathml/presentation/row-expected.txt

    r126160 r128837  
    11layer at (0,0) size 800x600
    22  RenderView at (0,0) size 800x600
    3 layer at (0,0) size 800x590
    4   RenderBlock {html} at (0,0) size 800x590
    5     RenderBody {body} at (8,16) size 784x558
     3layer at (0,0) size 800x510
     4  RenderBlock {html} at (0,0) size 800x510
     5    RenderBody {body} at (8,16) size 784x478
    66      RenderBlock {p} at (0,0) size 784x18
    77        RenderMathMLMath {math} at (0,3) size 29x12 [padding: 0 1 0 1]
    8           RenderInline {mi} at (0,0) size 7x24
    9             RenderText {#text} at (1,-6) size 7x24
    10               text run at (1,-6) width 7: "x"
     8          RenderBlock {mi} at (1,3) size 7x9
     9            RenderText {#text} at (0,-9) size 7x24
     10              text run at (0,-9) width 7: "x"
    1111          RenderMathMLOperator {mo} at (8,2) size 12x10 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    12             RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    13               RenderText {mo} at (0,-8) size 11x24
    14                 text run at (0,-8) width 11: "+"
    15           RenderInline {mn} at (0,0) size 8x24
    16             RenderText {#text} at (20,-6) size 8x24
    17               text run at (20,-6) width 8: "1"
     12            RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     13              RenderBlock (anonymous) at (0,0) size 11x10
     14                RenderText {mo} at (0,-8) size 11x24
     15                  text run at (0,-8) width 11: "+"
     16          RenderBlock {mn} at (20,0) size 8x12
     17            RenderText {#text} at (0,-6) size 8x24
     18              text run at (0,-6) width 8: "1"
    1819        RenderText {#text} at (0,0) size 0x0
    1920      RenderBlock {p} at (0,34) size 784x23
    2021        RenderText {#text} at (0,2) size 40x18
    2122          text run at (0,2) width 40: "16px: "
    22         RenderMathMLMath {math} at (40,0) size 45x20 [padding: 0 1 0 1]
    23           RenderMathMLRow {mrow} at (1,0) size 43x20
    24             RenderMathMLOperator {mo} at (0,3) size 10x17 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    25               RenderMathMLBlock (inline-block) {mo} at (0,0) size 9x17
    26                 RenderText {mo} at (0,-7) size 9x29
    27                   text run at (0,-7) width 9: "{"
    28             RenderInline {mi} at (0,0) size 7x24
    29               RenderText {#text} at (10,-1) size 7x24
    30                 text run at (10,-1) width 7: "x"
    31             RenderBlock {div} at (17,0) size 16x16 [bgcolor=#00FF00]
    32             RenderMathMLOperator {mo} at (33,3) size 10x17 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    33               RenderMathMLBlock (inline-block) {mo} at (0,0) size 9x17
    34                 RenderText {mo} at (0,-7) size 9x29
    35                   text run at (0,-7) width 9: "}"
     23        RenderMathMLMath {math} at (40,3) size 45x18 [padding: 0 1 0 1]
     24          RenderMathMLRow {mrow} at (1,0) size 43x18
     25            RenderMathMLOperator {mo} at (0,0) size 10x17 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     26              RenderMathMLBlock (flex) {mo} at (0,0) size 9x17
     27                RenderBlock (anonymous) at (0,0) size 9x17
     28                  RenderText {mo} at (0,-7) size 9x29
     29                    text run at (0,-7) width 9: "{"
     30            RenderBlock {mi} at (10,5) size 7x9
     31              RenderText {#text} at (0,-9) size 7x24
     32                text run at (0,-9) width 7: "x"
     33            RenderBlock {mtext} at (17,2) size 16x16
     34              RenderBlock {div} at (0,0) size 16x16 [bgcolor=#00FF00]
     35            RenderMathMLOperator {mo} at (33,0) size 10x17 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     36              RenderMathMLBlock (flex) {mo} at (0,0) size 9x17
     37                RenderBlock (anonymous) at (0,0) size 9x17
     38                  RenderText {mo} at (0,-7) size 9x29
     39                    text run at (0,-7) width 9: "}"
    3640        RenderText {#text} at (85,2) size 4x18
    3741          text run at (85,2) width 4: " "
    38         RenderMathMLMath {math} at (89,0) size 39x19 [padding: 0 1 0 1]
    39           RenderMathMLRow {mrow} at (1,0) size 37x19
    40             RenderMathMLOperator {mo} at (0,3) size 7x16 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    41               RenderMathMLBlock (inline-block) {mo} at (0,0) size 6x16
    42                 RenderText {mo} at (0,-7) size 6x29
    43                   text run at (0,-7) width 6: "["
    44             RenderInline {mi} at (0,0) size 7x24
    45               RenderText {#text} at (7,-1) size 7x24
    46                 text run at (7,-1) width 7: "x"
    47             RenderBlock {div} at (14,0) size 16x16 [bgcolor=#00FF00]
    48             RenderMathMLOperator {mo} at (30,3) size 7x16 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    49               RenderMathMLBlock (inline-block) {mo} at (0,0) size 6x16
    50                 RenderText {mo} at (0,-7) size 6x29
    51                   text run at (0,-7) width 6: "]"
     42        RenderMathMLMath {math} at (89,3) size 39x18 [padding: 0 1 0 1]
     43          RenderMathMLRow {mrow} at (1,0) size 37x18
     44            RenderMathMLOperator {mo} at (0,0) size 7x16 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     45              RenderMathMLBlock (flex) {mo} at (0,0) size 6x16
     46                RenderBlock (anonymous) at (0,0) size 6x16
     47                  RenderText {mo} at (0,-7) size 6x29
     48                    text run at (0,-7) width 6: "["
     49            RenderBlock {mi} at (7,5) size 7x9
     50              RenderText {#text} at (0,-9) size 7x24
     51                text run at (0,-9) width 7: "x"
     52            RenderBlock {mtext} at (14,2) size 16x16
     53              RenderBlock {div} at (0,0) size 16x16 [bgcolor=#00FF00]
     54            RenderMathMLOperator {mo} at (30,0) size 7x16 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     55              RenderMathMLBlock (flex) {mo} at (0,0) size 6x16
     56                RenderBlock (anonymous) at (0,0) size 6x16
     57                  RenderText {mo} at (0,-7) size 6x29
     58                    text run at (0,-7) width 6: "]"
    5259        RenderText {#text} at (128,2) size 4x18
    5360          text run at (128,2) width 4: " "
    54         RenderMathMLMath {math} at (132,0) size 39x20 [padding: 0 1 0 1]
    55           RenderMathMLRow {mrow} at (1,0) size 37x20
    56             RenderMathMLOperator {mo} at (0,3) size 7x17 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    57               RenderMathMLBlock (inline-block) {mo} at (0,0) size 6x17
    58                 RenderText {mo} at (0,-7) size 6x29
    59                   text run at (0,-7) width 6: "("
    60             RenderInline {mi} at (0,0) size 7x24
    61               RenderText {#text} at (7,-1) size 7x24
    62                 text run at (7,-1) width 7: "x"
    63             RenderBlock {div} at (14,0) size 16x16 [bgcolor=#00FF00]
    64             RenderMathMLOperator {mo} at (30,3) size 7x17 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    65               RenderMathMLBlock (inline-block) {mo} at (0,0) size 6x17
    66                 RenderText {mo} at (0,-7) size 6x29
    67                   text run at (0,-7) width 6: ")"
     61        RenderMathMLMath {math} at (132,3) size 39x18 [padding: 0 1 0 1]
     62          RenderMathMLRow {mrow} at (1,0) size 37x18
     63            RenderMathMLOperator {mo} at (0,0) size 7x17 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     64              RenderMathMLBlock (flex) {mo} at (0,0) size 6x17
     65                RenderBlock (anonymous) at (0,0) size 6x17
     66                  RenderText {mo} at (0,-7) size 6x29
     67                    text run at (0,-7) width 6: "("
     68            RenderBlock {mi} at (7,5) size 7x9
     69              RenderText {#text} at (0,-9) size 7x24
     70                text run at (0,-9) width 7: "x"
     71            RenderBlock {mtext} at (14,2) size 16x16
     72              RenderBlock {div} at (0,0) size 16x16 [bgcolor=#00FF00]
     73            RenderMathMLOperator {mo} at (30,0) size 7x17 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     74              RenderMathMLBlock (flex) {mo} at (0,0) size 6x17
     75                RenderBlock (anonymous) at (0,0) size 6x17
     76                  RenderText {mo} at (0,-7) size 6x29
     77                    text run at (0,-7) width 6: ")"
    6878        RenderText {#text} at (171,2) size 4x18
    6979          text run at (171,2) width 4: " "
    70         RenderMathMLMath {math} at (175,0) size 35x17 [padding: 0 1 0 1]
    71           RenderMathMLRow {mrow} at (1,0) size 33x17
    72             RenderMathMLOperator {mo} at (0,3) size 5x14 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    73               RenderMathMLBlock (inline-block) {mo} at (0,0) size 4x14
    74                 RenderText {mo} at (0,-7) size 4x29
    75                   text run at (0,-7) width 4: "|"
    76             RenderInline {mi} at (0,0) size 7x24
    77               RenderText {#text} at (5,-1) size 7x24
    78                 text run at (5,-1) width 7: "x"
    79             RenderBlock {div} at (12,0) size 16x16 [bgcolor=#00FF00]
    80             RenderMathMLOperator {mo} at (28,3) size 5x14 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    81               RenderMathMLBlock (inline-block) {mo} at (0,0) size 4x14
    82                 RenderText {mo} at (0,-7) size 4x29
    83                   text run at (0,-7) width 4: "|"
     80        RenderMathMLMath {math} at (175,3) size 35x18 [padding: 0 1 0 1]
     81          RenderMathMLRow {mrow} at (1,0) size 33x18
     82            RenderMathMLOperator {mo} at (0,0) size 5x14 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     83              RenderMathMLBlock (flex) {mo} at (0,0) size 4x14
     84                RenderBlock (anonymous) at (0,0) size 4x14
     85                  RenderText {mo} at (0,-7) size 4x29
     86                    text run at (0,-7) width 4: "|"
     87            RenderBlock {mi} at (5,5) size 7x9
     88              RenderText {#text} at (0,-9) size 7x24
     89                text run at (0,-9) width 7: "x"
     90            RenderBlock {mtext} at (12,2) size 16x16
     91              RenderBlock {div} at (0,0) size 16x16 [bgcolor=#00FF00]
     92            RenderMathMLOperator {mo} at (28,0) size 5x14 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     93              RenderMathMLBlock (flex) {mo} at (0,0) size 4x14
     94                RenderBlock (anonymous) at (0,0) size 4x14
     95                  RenderText {mo} at (0,-7) size 4x29
     96                    text run at (0,-7) width 4: "|"
    8497        RenderText {#text} at (210,2) size 4x18
    8598          text run at (210,2) width 4: " "
     
    87100          RenderMathMLRow {mrow} at (1,0) size 33x23
    88101            RenderMathMLOperator {mo} at (0,0) size 10x23 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    89               RenderMathMLBlock (inline-block) {mo} at (0,0) size 9x23
    90                 RenderText {mo} at (0,-4) size 9x29
    91                   text run at (0,-4) width 9: "\x{222B}"
    92             RenderInline {mi} at (0,0) size 7x24
    93               RenderText {#text} at (10,-1) size 7x24
    94                 text run at (10,-1) width 7: "x"
    95             RenderBlock {div} at (17,0) size 16x16 [bgcolor=#00FF00]
     102              RenderMathMLBlock (flex) {mo} at (0,0) size 9x23
     103                RenderBlock (anonymous) at (0,0) size 9x23
     104                  RenderText {mo} at (0,-4) size 9x29
     105                    text run at (0,-4) width 9: "\x{222B}"
     106            RenderBlock {mi} at (10,8) size 7x9
     107              RenderText {#text} at (0,-9) size 7x24
     108                text run at (0,-9) width 7: "x"
     109            RenderBlock {mtext} at (17,5) size 16x16
     110              RenderBlock {div} at (0,0) size 16x16 [bgcolor=#00FF00]
    96111        RenderText {#text} at (0,0) size 0x0
    97       RenderBlock {p} at (0,73) size 784x42
    98         RenderText {#text} at (0,10) size 40x18
    99           text run at (0,10) width 40: "24px: "
    100         RenderMathMLMath {math} at (40,0) size 49x42 [padding: 0 1 0 1]
    101           RenderMathMLRow {mrow} at (1,0) size 47x42
    102             RenderMathMLOperator {mo} at (0,8) size 8x34 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    103             RenderInline {mi} at (0,0) size 7x24
    104               RenderText {#text} at (8,7) size 7x24
    105                 text run at (8,7) width 7: "x"
    106             RenderBlock {div} at (15,0) size 24x24 [bgcolor=#00FF00]
    107             RenderMathMLOperator {mo} at (39,8) size 8x34 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    108         RenderText {#text} at (89,10) size 4x18
    109           text run at (89,10) width 4: " "
    110         RenderMathMLMath {math} at (93,0) size 45x41 [padding: 0 1 0 1]
    111           RenderMathMLRow {mrow} at (1,0) size 43x41
    112             RenderMathMLOperator {mo} at (0,8) size 6x33 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    113             RenderInline {mi} at (0,0) size 7x24
    114               RenderText {#text} at (6,7) size 7x24
    115                 text run at (6,7) width 7: "x"
    116             RenderBlock {div} at (13,0) size 24x24 [bgcolor=#00FF00]
    117             RenderMathMLOperator {mo} at (37,8) size 6x33 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    118         RenderText {#text} at (138,10) size 4x18
    119           text run at (138,10) width 4: " "
    120         RenderMathMLMath {math} at (142,0) size 45x40 [padding: 0 1 0 1]
    121           RenderMathMLRow {mrow} at (1,0) size 43x40
    122             RenderMathMLOperator {mo} at (0,8) size 6x32 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    123             RenderInline {mi} at (0,0) size 7x24
    124               RenderText {#text} at (6,7) size 7x24
    125                 text run at (6,7) width 7: "x"
    126             RenderBlock {div} at (13,0) size 24x24 [bgcolor=#00FF00]
    127             RenderMathMLOperator {mo} at (37,8) size 6x32 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    128         RenderText {#text} at (187,10) size 4x18
    129           text run at (187,10) width 4: " "
    130         RenderMathMLMath {math} at (191,0) size 49x39 [padding: 0 1 0 1]
    131           RenderMathMLRow {mrow} at (1,0) size 47x39
    132             RenderMathMLOperator {mo} at (0,8) size 8x31 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    133             RenderInline {mi} at (0,0) size 7x24
    134               RenderText {#text} at (8,7) size 7x24
    135                 text run at (8,7) width 7: "x"
    136             RenderBlock {div} at (15,0) size 24x24 [bgcolor=#00FF00]
    137             RenderMathMLOperator {mo} at (39,8) size 8x31 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    138         RenderText {#text} at (240,10) size 4x18
    139           text run at (240,10) width 4: " "
    140         RenderMathMLMath {math} at (244,0) size 44x41 [padding: 0 1 0 1]
    141           RenderMathMLRow {mrow} at (1,0) size 42x41
    142             RenderMathMLOperator {mo} at (0,8) size 11x33 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    143             RenderInline {mi} at (0,0) size 7x24
    144               RenderText {#text} at (11,7) size 7x24
    145                 text run at (11,7) width 7: "x"
    146             RenderBlock {div} at (18,0) size 24x24 [bgcolor=#00FF00]
     112      RenderBlock {p} at (0,73) size 784x35
     113        RenderText {#text} at (0,3) size 40x18
     114          text run at (0,3) width 40: "24px: "
     115        RenderMathMLMath {math} at (40,0) size 49x35 [padding: 0 1 0 1]
     116          RenderMathMLRow {mrow} at (1,0) size 47x35
     117            RenderMathMLOperator {mo} at (0,1) size 8x34 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     118            RenderBlock {mi} at (8,9) size 7x9
     119              RenderText {#text} at (0,-9) size 7x24
     120                text run at (0,-9) width 7: "x"
     121            RenderBlock {mtext} at (15,0) size 24x24
     122              RenderBlock {div} at (0,0) size 24x24 [bgcolor=#00FF00]
     123            RenderMathMLOperator {mo} at (39,1) size 8x34 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     124        RenderText {#text} at (89,3) size 4x18
     125          text run at (89,3) width 4: " "
     126        RenderMathMLMath {math} at (93,0) size 45x34 [padding: 0 1 0 1]
     127          RenderMathMLRow {mrow} at (1,0) size 43x34
     128            RenderMathMLOperator {mo} at (0,1) size 6x33 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     129            RenderBlock {mi} at (6,9) size 7x9
     130              RenderText {#text} at (0,-9) size 7x24
     131                text run at (0,-9) width 7: "x"
     132            RenderBlock {mtext} at (13,0) size 24x24
     133              RenderBlock {div} at (0,0) size 24x24 [bgcolor=#00FF00]
     134            RenderMathMLOperator {mo} at (37,1) size 6x33 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     135        RenderText {#text} at (138,3) size 4x18
     136          text run at (138,3) width 4: " "
     137        RenderMathMLMath {math} at (142,0) size 45x33 [padding: 0 1 0 1]
     138          RenderMathMLRow {mrow} at (1,0) size 43x33
     139            RenderMathMLOperator {mo} at (0,1) size 6x32 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     140            RenderBlock {mi} at (6,9) size 7x9
     141              RenderText {#text} at (0,-9) size 7x24
     142                text run at (0,-9) width 7: "x"
     143            RenderBlock {mtext} at (13,0) size 24x24
     144              RenderBlock {div} at (0,0) size 24x24 [bgcolor=#00FF00]
     145            RenderMathMLOperator {mo} at (37,1) size 6x32 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     146        RenderText {#text} at (187,3) size 4x18
     147          text run at (187,3) width 4: " "
     148        RenderMathMLMath {math} at (191,0) size 49x32 [padding: 0 1 0 1]
     149          RenderMathMLRow {mrow} at (1,0) size 47x32
     150            RenderMathMLOperator {mo} at (0,1) size 8x31 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     151            RenderBlock {mi} at (8,9) size 7x9
     152              RenderText {#text} at (0,-9) size 7x24
     153                text run at (0,-9) width 7: "x"
     154            RenderBlock {mtext} at (15,0) size 24x24
     155              RenderBlock {div} at (0,0) size 24x24 [bgcolor=#00FF00]
     156            RenderMathMLOperator {mo} at (39,1) size 8x31 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     157        RenderText {#text} at (240,3) size 4x18
     158          text run at (240,3) width 4: " "
     159        RenderMathMLMath {math} at (244,0) size 44x34 [padding: 0 1 0 1]
     160          RenderMathMLRow {mrow} at (1,0) size 42x34
     161            RenderMathMLOperator {mo} at (0,1) size 11x33 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     162            RenderBlock {mi} at (11,9) size 7x9
     163              RenderText {#text} at (0,-9) size 7x24
     164                text run at (0,-9) width 7: "x"
     165            RenderBlock {mtext} at (18,0) size 24x24
     166              RenderBlock {div} at (0,0) size 24x24 [bgcolor=#00FF00]
    147167        RenderText {#text} at (0,0) size 0x0
    148       RenderBlock {p} at (0,131) size 784x53
    149         RenderText {#text} at (0,18) size 40x18
    150           text run at (0,18) width 40: "32px: "
    151         RenderMathMLMath {math} at (40,0) size 57x53 [padding: 0 1 0 1]
    152           RenderMathMLRow {mrow} at (1,0) size 55x53
    153             RenderMathMLOperator {mo} at (0,10) size 8x43 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    154             RenderInline {mi} at (0,0) size 7x24
    155               RenderText {#text} at (8,15) size 7x24
    156                 text run at (8,15) width 7: "x"
    157             RenderBlock {div} at (15,0) size 32x32 [bgcolor=#00FF00]
    158             RenderMathMLOperator {mo} at (47,10) size 8x43 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    159         RenderText {#text} at (97,18) size 4x18
    160           text run at (97,18) width 4: " "
    161         RenderMathMLMath {math} at (101,0) size 53x53 [padding: 0 1 0 1]
    162           RenderMathMLRow {mrow} at (1,0) size 51x53
    163             RenderMathMLOperator {mo} at (0,10) size 6x43 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    164             RenderInline {mi} at (0,0) size 7x24
    165               RenderText {#text} at (6,15) size 7x24
    166                 text run at (6,15) width 7: "x"
    167             RenderBlock {div} at (13,0) size 32x32 [bgcolor=#00FF00]
    168             RenderMathMLOperator {mo} at (45,10) size 6x43 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    169         RenderText {#text} at (154,18) size 4x18
    170           text run at (154,18) width 4: " "
    171         RenderMathMLMath {math} at (158,0) size 53x52 [padding: 0 1 0 1]
    172           RenderMathMLRow {mrow} at (1,0) size 51x52
    173             RenderMathMLOperator {mo} at (0,10) size 6x42 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    174             RenderInline {mi} at (0,0) size 7x24
    175               RenderText {#text} at (6,15) size 7x24
    176                 text run at (6,15) width 7: "x"
    177             RenderBlock {div} at (13,0) size 32x32 [bgcolor=#00FF00]
    178             RenderMathMLOperator {mo} at (45,10) size 6x42 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    179         RenderText {#text} at (211,18) size 4x18
    180           text run at (211,18) width 4: " "
    181         RenderMathMLMath {math} at (215,0) size 57x51 [padding: 0 1 0 1]
    182           RenderMathMLRow {mrow} at (1,0) size 55x51
    183             RenderMathMLOperator {mo} at (0,10) size 8x41 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    184             RenderInline {mi} at (0,0) size 7x24
    185               RenderText {#text} at (8,15) size 7x24
    186                 text run at (8,15) width 7: "x"
    187             RenderBlock {div} at (15,0) size 32x32 [bgcolor=#00FF00]
    188             RenderMathMLOperator {mo} at (47,10) size 8x41 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    189         RenderText {#text} at (272,18) size 4x18
    190           text run at (272,18) width 4: " "
    191         RenderMathMLMath {math} at (276,0) size 52x53 [padding: 0 1 0 1]
    192           RenderMathMLRow {mrow} at (1,0) size 50x53
    193             RenderMathMLOperator {mo} at (0,10) size 11x43 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    194             RenderInline {mi} at (0,0) size 7x24
    195               RenderText {#text} at (11,15) size 7x24
    196                 text run at (11,15) width 7: "x"
    197             RenderBlock {div} at (18,0) size 32x32 [bgcolor=#00FF00]
     168      RenderBlock {p} at (0,124) size 784x43
     169        RenderText {#text} at (0,8) size 40x18
     170          text run at (0,8) width 40: "32px: "
     171        RenderMathMLMath {math} at (40,0) size 57x43 [padding: 0 1 0 1]
     172          RenderMathMLRow {mrow} at (1,0) size 55x43
     173            RenderMathMLOperator {mo} at (0,0) size 8x43 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     174            RenderBlock {mi} at (8,14) size 7x9
     175              RenderText {#text} at (0,-9) size 7x24
     176                text run at (0,-9) width 7: "x"
     177            RenderBlock {mtext} at (15,0) size 32x32
     178              RenderBlock {div} at (0,0) size 32x32 [bgcolor=#00FF00]
     179            RenderMathMLOperator {mo} at (47,0) size 8x43 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     180        RenderText {#text} at (97,8) size 4x18
     181          text run at (97,8) width 4: " "
     182        RenderMathMLMath {math} at (101,0) size 53x43 [padding: 0 1 0 1]
     183          RenderMathMLRow {mrow} at (1,0) size 51x43
     184            RenderMathMLOperator {mo} at (0,0) size 6x43 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     185            RenderBlock {mi} at (6,14) size 7x9
     186              RenderText {#text} at (0,-9) size 7x24
     187                text run at (0,-9) width 7: "x"
     188            RenderBlock {mtext} at (13,0) size 32x32
     189              RenderBlock {div} at (0,0) size 32x32 [bgcolor=#00FF00]
     190            RenderMathMLOperator {mo} at (45,0) size 6x43 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     191        RenderText {#text} at (154,8) size 4x18
     192          text run at (154,8) width 4: " "
     193        RenderMathMLMath {math} at (158,0) size 53x42 [padding: 0 1 0 1]
     194          RenderMathMLRow {mrow} at (1,0) size 51x42
     195            RenderMathMLOperator {mo} at (0,0) size 6x42 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     196            RenderBlock {mi} at (6,14) size 7x9
     197              RenderText {#text} at (0,-9) size 7x24
     198                text run at (0,-9) width 7: "x"
     199            RenderBlock {mtext} at (13,0) size 32x32
     200              RenderBlock {div} at (0,0) size 32x32 [bgcolor=#00FF00]
     201            RenderMathMLOperator {mo} at (45,0) size 6x42 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     202        RenderText {#text} at (211,8) size 4x18
     203          text run at (211,8) width 4: " "
     204        RenderMathMLMath {math} at (215,0) size 57x41 [padding: 0 1 0 1]
     205          RenderMathMLRow {mrow} at (1,0) size 55x41
     206            RenderMathMLOperator {mo} at (0,0) size 8x41 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     207            RenderBlock {mi} at (8,14) size 7x9
     208              RenderText {#text} at (0,-9) size 7x24
     209                text run at (0,-9) width 7: "x"
     210            RenderBlock {mtext} at (15,0) size 32x32
     211              RenderBlock {div} at (0,0) size 32x32 [bgcolor=#00FF00]
     212            RenderMathMLOperator {mo} at (47,0) size 8x41 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     213        RenderText {#text} at (272,8) size 4x18
     214          text run at (272,8) width 4: " "
     215        RenderMathMLMath {math} at (276,0) size 52x43 [padding: 0 1 0 1]
     216          RenderMathMLRow {mrow} at (1,0) size 50x43
     217            RenderMathMLOperator {mo} at (0,0) size 11x43 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     218            RenderBlock {mi} at (11,14) size 7x9
     219              RenderText {#text} at (0,-9) size 7x24
     220                text run at (0,-9) width 7: "x"
     221            RenderBlock {mtext} at (18,0) size 32x32
     222              RenderBlock {div} at (0,0) size 32x32 [bgcolor=#00FF00]
    198223        RenderText {#text} at (0,0) size 0x0
    199       RenderBlock {p} at (0,200) size 784x77
    200         RenderText {#text} at (0,34) size 40x18
    201           text run at (0,34) width 40: "48px: "
    202         RenderMathMLMath {math} at (40,0) size 73x77 [padding: 0 1 0 1]
    203           RenderMathMLRow {mrow} at (1,0) size 71x77
    204             RenderMathMLOperator {mo} at (0,15) size 8x62 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    205             RenderInline {mi} at (0,0) size 7x24
    206               RenderText {#text} at (8,31) size 7x24
    207                 text run at (8,31) width 7: "x"
    208             RenderBlock {div} at (15,0) size 48x48 [bgcolor=#00FF00]
    209             RenderMathMLOperator {mo} at (63,15) size 8x62 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    210         RenderText {#text} at (113,34) size 4x18
    211           text run at (113,34) width 4: " "
    212         RenderMathMLMath {math} at (117,0) size 69x77 [padding: 0 1 0 1]
    213           RenderMathMLRow {mrow} at (1,0) size 67x77
    214             RenderMathMLOperator {mo} at (0,15) size 6x62 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    215             RenderInline {mi} at (0,0) size 7x24
    216               RenderText {#text} at (6,31) size 7x24
    217                 text run at (6,31) width 7: "x"
    218             RenderBlock {div} at (13,0) size 48x48 [bgcolor=#00FF00]
    219             RenderMathMLOperator {mo} at (61,15) size 6x62 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    220         RenderText {#text} at (186,34) size 4x18
    221           text run at (186,34) width 4: " "
    222         RenderMathMLMath {math} at (190,0) size 69x76 [padding: 0 1 0 1]
    223           RenderMathMLRow {mrow} at (1,0) size 67x76
    224             RenderMathMLOperator {mo} at (0,15) size 6x61 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    225             RenderInline {mi} at (0,0) size 7x24
    226               RenderText {#text} at (6,31) size 7x24
    227                 text run at (6,31) width 7: "x"
    228             RenderBlock {div} at (13,0) size 48x48 [bgcolor=#00FF00]
    229             RenderMathMLOperator {mo} at (61,15) size 6x61 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    230         RenderText {#text} at (259,34) size 4x18
    231           text run at (259,34) width 4: " "
    232         RenderMathMLMath {math} at (263,0) size 73x75 [padding: 0 1 0 1]
    233           RenderMathMLRow {mrow} at (1,0) size 71x75
    234             RenderMathMLOperator {mo} at (0,15) size 8x60 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    235             RenderInline {mi} at (0,0) size 7x24
    236               RenderText {#text} at (8,31) size 7x24
    237                 text run at (8,31) width 7: "x"
    238             RenderBlock {div} at (15,0) size 48x48 [bgcolor=#00FF00]
    239             RenderMathMLOperator {mo} at (63,15) size 8x60 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    240         RenderText {#text} at (336,34) size 4x18
    241           text run at (336,34) width 4: " "
    242         RenderMathMLMath {math} at (340,0) size 68x77 [padding: 0 1 0 1]
    243           RenderMathMLRow {mrow} at (1,0) size 66x77
    244             RenderMathMLOperator {mo} at (0,15) size 11x62 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    245             RenderInline {mi} at (0,0) size 7x24
    246               RenderText {#text} at (11,31) size 7x24
    247                 text run at (11,31) width 7: "x"
    248             RenderBlock {div} at (18,0) size 48x48 [bgcolor=#00FF00]
     224      RenderBlock {p} at (0,183) size 784x62
     225        RenderText {#text} at (0,19) size 40x18
     226          text run at (0,19) width 40: "48px: "
     227        RenderMathMLMath {math} at (40,0) size 73x62 [padding: 0 1 0 1]
     228          RenderMathMLRow {mrow} at (1,0) size 71x62
     229            RenderMathMLOperator {mo} at (0,0) size 8x62 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     230            RenderBlock {mi} at (8,25) size 7x9
     231              RenderText {#text} at (0,-9) size 7x24
     232                text run at (0,-9) width 7: "x"
     233            RenderBlock {mtext} at (15,0) size 48x48
     234              RenderBlock {div} at (0,0) size 48x48 [bgcolor=#00FF00]
     235            RenderMathMLOperator {mo} at (63,0) size 8x62 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     236        RenderText {#text} at (113,19) size 4x18
     237          text run at (113,19) width 4: " "
     238        RenderMathMLMath {math} at (117,0) size 69x62 [padding: 0 1 0 1]
     239          RenderMathMLRow {mrow} at (1,0) size 67x62
     240            RenderMathMLOperator {mo} at (0,0) size 6x62 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     241            RenderBlock {mi} at (6,25) size 7x9
     242              RenderText {#text} at (0,-9) size 7x24
     243                text run at (0,-9) width 7: "x"
     244            RenderBlock {mtext} at (13,0) size 48x48
     245              RenderBlock {div} at (0,0) size 48x48 [bgcolor=#00FF00]
     246            RenderMathMLOperator {mo} at (61,0) size 6x62 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     247        RenderText {#text} at (186,19) size 4x18
     248          text run at (186,19) width 4: " "
     249        RenderMathMLMath {math} at (190,0) size 69x61 [padding: 0 1 0 1]
     250          RenderMathMLRow {mrow} at (1,0) size 67x61
     251            RenderMathMLOperator {mo} at (0,0) size 6x61 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     252            RenderBlock {mi} at (6,25) size 7x9
     253              RenderText {#text} at (0,-9) size 7x24
     254                text run at (0,-9) width 7: "x"
     255            RenderBlock {mtext} at (13,0) size 48x48
     256              RenderBlock {div} at (0,0) size 48x48 [bgcolor=#00FF00]
     257            RenderMathMLOperator {mo} at (61,0) size 6x61 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     258        RenderText {#text} at (259,19) size 4x18
     259          text run at (259,19) width 4: " "
     260        RenderMathMLMath {math} at (263,0) size 73x60 [padding: 0 1 0 1]
     261          RenderMathMLRow {mrow} at (1,0) size 71x60
     262            RenderMathMLOperator {mo} at (0,0) size 8x60 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     263            RenderBlock {mi} at (8,25) size 7x9
     264              RenderText {#text} at (0,-9) size 7x24
     265                text run at (0,-9) width 7: "x"
     266            RenderBlock {mtext} at (15,0) size 48x48
     267              RenderBlock {div} at (0,0) size 48x48 [bgcolor=#00FF00]
     268            RenderMathMLOperator {mo} at (63,0) size 8x60 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     269        RenderText {#text} at (336,19) size 4x18
     270          text run at (336,19) width 4: " "
     271        RenderMathMLMath {math} at (340,0) size 68x62 [padding: 0 1 0 1]
     272          RenderMathMLRow {mrow} at (1,0) size 66x62
     273            RenderMathMLOperator {mo} at (0,0) size 11x62 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     274            RenderBlock {mi} at (11,25) size 7x9
     275              RenderText {#text} at (0,-9) size 7x24
     276                text run at (0,-9) width 7: "x"
     277            RenderBlock {mtext} at (18,0) size 48x48
     278              RenderBlock {div} at (0,0) size 48x48 [bgcolor=#00FF00]
    249279        RenderText {#text} at (0,0) size 0x0
    250       RenderBlock {p} at (0,293) size 784x185
    251         RenderText {#text} at (0,106) size 48x18
    252           text run at (0,106) width 48: "120px: "
    253         RenderMathMLMath {math} at (48,0) size 73x185 [padding: 0 1 0 1]
    254           RenderMathMLRow {mrow} at (1,0) size 71x185
    255             RenderMathMLOperator {mo} at (0,36) size 8x149 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    256             RenderInline {mi} at (0,0) size 7x24
    257               RenderText {#text} at (8,103) size 7x24
    258                 text run at (8,103) width 7: "x"
    259             RenderBlock {div} at (15,0) size 48x120 [bgcolor=#00FF00]
    260             RenderMathMLOperator {mo} at (63,36) size 8x149 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    261         RenderText {#text} at (121,106) size 4x18
    262           text run at (121,106) width 4: " "
    263         RenderMathMLMath {math} at (125,0) size 69x185 [padding: 0 1 0 1]
    264           RenderMathMLRow {mrow} at (1,0) size 67x185
    265             RenderMathMLOperator {mo} at (0,36) size 6x149 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    266             RenderInline {mi} at (0,0) size 7x24
    267               RenderText {#text} at (6,103) size 7x24
    268                 text run at (6,103) width 7: "x"
    269             RenderBlock {div} at (13,0) size 48x120 [bgcolor=#00FF00]
    270             RenderMathMLOperator {mo} at (61,36) size 6x149 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    271         RenderText {#text} at (194,106) size 4x18
    272           text run at (194,106) width 4: " "
    273         RenderMathMLMath {math} at (198,0) size 69x184 [padding: 0 1 0 1]
    274           RenderMathMLRow {mrow} at (1,0) size 67x184
    275             RenderMathMLOperator {mo} at (0,36) size 6x148 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    276             RenderInline {mi} at (0,0) size 7x24
    277               RenderText {#text} at (6,103) size 7x24
    278                 text run at (6,103) width 7: "x"
    279             RenderBlock {div} at (13,0) size 48x120 [bgcolor=#00FF00]
    280             RenderMathMLOperator {mo} at (61,36) size 6x148 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    281         RenderText {#text} at (267,106) size 4x18
    282           text run at (267,106) width 4: " "
    283         RenderMathMLMath {math} at (271,0) size 73x183 [padding: 0 1 0 1]
    284           RenderMathMLRow {mrow} at (1,0) size 71x183
    285             RenderMathMLOperator {mo} at (0,36) size 8x147 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    286             RenderInline {mi} at (0,0) size 7x24
    287               RenderText {#text} at (8,103) size 7x24
    288                 text run at (8,103) width 7: "x"
    289             RenderBlock {div} at (15,0) size 48x120 [bgcolor=#00FF00]
    290             RenderMathMLOperator {mo} at (63,36) size 8x147 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    291         RenderText {#text} at (344,106) size 4x18
    292           text run at (344,106) width 4: " "
    293         RenderMathMLMath {math} at (348,0) size 68x185 [padding: 0 1 0 1]
    294           RenderMathMLRow {mrow} at (1,0) size 66x185
    295             RenderMathMLOperator {mo} at (0,36) size 11x149 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    296             RenderInline {mi} at (0,0) size 7x24
    297               RenderText {#text} at (11,103) size 7x24
    298                 text run at (11,103) width 7: "x"
    299             RenderBlock {div} at (18,0) size 48x120 [bgcolor=#00FF00]
     280      RenderBlock {p} at (0,261) size 784x149
     281        RenderText {#text} at (0,70) size 48x18
     282          text run at (0,70) width 48: "120px: "
     283        RenderMathMLMath {math} at (48,0) size 73x149 [padding: 0 1 0 1]
     284          RenderMathMLRow {mrow} at (1,0) size 71x149
     285            RenderMathMLOperator {mo} at (0,0) size 8x149 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     286            RenderBlock {mi} at (8,76) size 7x9
     287              RenderText {#text} at (0,-9) size 7x24
     288                text run at (0,-9) width 7: "x"
     289            RenderBlock {mtext} at (15,3) size 48x120
     290              RenderBlock {div} at (0,0) size 48x120 [bgcolor=#00FF00]
     291            RenderMathMLOperator {mo} at (63,0) size 8x149 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     292        RenderText {#text} at (121,70) size 4x18
     293          text run at (121,70) width 4: " "
     294        RenderMathMLMath {math} at (125,0) size 69x149 [padding: 0 1 0 1]
     295          RenderMathMLRow {mrow} at (1,0) size 67x149
     296            RenderMathMLOperator {mo} at (0,0) size 6x149 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     297            RenderBlock {mi} at (6,76) size 7x9
     298              RenderText {#text} at (0,-9) size 7x24
     299                text run at (0,-9) width 7: "x"
     300            RenderBlock {mtext} at (13,3) size 48x120
     301              RenderBlock {div} at (0,0) size 48x120 [bgcolor=#00FF00]
     302            RenderMathMLOperator {mo} at (61,0) size 6x149 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     303        RenderText {#text} at (194,70) size 4x18
     304          text run at (194,70) width 4: " "
     305        RenderMathMLMath {math} at (198,0) size 69x148 [padding: 0 1 0 1]
     306          RenderMathMLRow {mrow} at (1,0) size 67x148
     307            RenderMathMLOperator {mo} at (0,0) size 6x148 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     308            RenderBlock {mi} at (6,76) size 7x9
     309              RenderText {#text} at (0,-9) size 7x24
     310                text run at (0,-9) width 7: "x"
     311            RenderBlock {mtext} at (13,3) size 48x120
     312              RenderBlock {div} at (0,0) size 48x120 [bgcolor=#00FF00]
     313            RenderMathMLOperator {mo} at (61,0) size 6x148 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     314        RenderText {#text} at (267,70) size 4x18
     315          text run at (267,70) width 4: " "
     316        RenderMathMLMath {math} at (271,0) size 73x147 [padding: 0 1 0 1]
     317          RenderMathMLRow {mrow} at (1,0) size 71x147
     318            RenderMathMLOperator {mo} at (0,0) size 8x147 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     319            RenderBlock {mi} at (8,76) size 7x9
     320              RenderText {#text} at (0,-9) size 7x24
     321                text run at (0,-9) width 7: "x"
     322            RenderBlock {mtext} at (15,3) size 48x120
     323              RenderBlock {div} at (0,0) size 48x120 [bgcolor=#00FF00]
     324            RenderMathMLOperator {mo} at (63,0) size 8x147 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     325        RenderText {#text} at (344,70) size 4x18
     326          text run at (344,70) width 4: " "
     327        RenderMathMLMath {math} at (348,0) size 68x149 [padding: 0 1 0 1]
     328          RenderMathMLRow {mrow} at (1,0) size 66x149
     329            RenderMathMLOperator {mo} at (0,0) size 11x149 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     330            RenderBlock {mi} at (11,76) size 7x9
     331              RenderText {#text} at (0,-9) size 7x24
     332                text run at (0,-9) width 7: "x"
     333            RenderBlock {mtext} at (18,3) size 48x120
     334              RenderBlock {div} at (0,0) size 48x120 [bgcolor=#00FF00]
    300335        RenderText {#text} at (0,0) size 0x0
    301       RenderBlock {p} at (0,494) size 784x64
    302         RenderMathMLMath {math} at (0,0) size 156x64 [padding: 0 1 0 1]
    303           RenderMathMLRow {mrow} at (1,0) size 154x64
    304             RenderMathMLOperator {mo} at (0,12) size 6x52 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    305             RenderInline {mi} at (0,0) size 7x24
    306               RenderText {#text} at (6,23) size 7x24
    307                 text run at (6,23) width 7: "x"
    308             RenderMathMLOperator {mo} at (13,38) size 5x5 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    309               RenderMathMLBlock (inline-block) {mo} at (0,0) size 4x5
    310                 RenderText {mo} at (0,-15) size 4x24
    311                   text run at (0,-15) width 4: ","
    312             RenderBlock {div} at (18,0) size 40x40 [bgcolor=#00FF00]
    313             RenderMathMLOperator {mo} at (58,38) size 5x5 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    314               RenderMathMLBlock (inline-block) {mo} at (0,0) size 4x5
    315                 RenderText {mo} at (0,-15) size 4x24
    316                   text run at (0,-15) width 4: ","
    317             RenderBlock {div} at (63,0) size 40x40 [bgcolor=#00FF00]
    318             RenderMathMLOperator {mo} at (103,38) size 5x5 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    319               RenderMathMLBlock (inline-block) {mo} at (0,0) size 4x5
    320                 RenderText {mo} at (0,-15) size 4x24
    321                   text run at (0,-15) width 4: ","
    322             RenderBlock {div} at (108,0) size 40x40 [bgcolor=#00FF00]
    323             RenderMathMLOperator {mo} at (148,12) size 6x52 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     336      RenderBlock {p} at (0,426) size 784x52
     337        RenderText {#text} at (0,14) size 40x18
     338          text run at (0,14) width 40: "40px: "
     339        RenderMathMLMath {math} at (40,0) size 156x52 [padding: 0 1 0 1]
     340          RenderMathMLRow {mrow} at (1,0) size 154x52
     341            RenderMathMLOperator {mo} at (0,0) size 6x52 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     342            RenderBlock {mi} at (6,20) size 7x9
     343              RenderText {#text} at (0,-9) size 7x24
     344                text run at (0,-9) width 7: "x"
     345            RenderMathMLOperator {mo} at (13,26) size 5x5 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     346              RenderMathMLBlock (flex) {mo} at (0,0) size 4x5
     347                RenderBlock (anonymous) at (0,0) size 4x5
     348                  RenderText {mo} at (0,-15) size 4x24
     349                    text run at (0,-15) width 4: ","
     350            RenderBlock {mtext} at (18,1) size 40x40
     351              RenderBlock {div} at (0,0) size 40x40 [bgcolor=#00FF00]
     352            RenderMathMLOperator {mo} at (58,26) size 5x5 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     353              RenderMathMLBlock (flex) {mo} at (0,0) size 4x5
     354                RenderBlock (anonymous) at (0,0) size 4x5
     355                  RenderText {mo} at (0,-15) size 4x24
     356                    text run at (0,-15) width 4: ","
     357            RenderBlock {mtext} at (63,1) size 40x40
     358              RenderBlock {div} at (0,0) size 40x40 [bgcolor=#00FF00]
     359            RenderMathMLOperator {mo} at (103,26) size 5x5 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
     360              RenderMathMLBlock (flex) {mo} at (0,0) size 4x5
     361                RenderBlock (anonymous) at (0,0) size 4x5
     362                  RenderText {mo} at (0,-15) size 4x24
     363                    text run at (0,-15) width 4: ","
     364            RenderBlock {mtext} at (108,1) size 40x40
     365              RenderBlock {div} at (0,0) size 40x40 [bgcolor=#00FF00]
     366            RenderMathMLOperator {mo} at (148,0) size 6x52 [bgcolor=#C8C8C8] [padding: 0 1 0 0]
    324367        RenderText {#text} at (0,0) size 0x0
    325 layer at (49,97) size 7x9 scrollHeight 18
    326   RenderMathMLBlock (block) {mo} at (0,0) size 7x9
    327 layer at (49,106) size 7x10 scrollHeight 17
    328   RenderMathMLBlock (block) {mo} at (0,9) size 7x10
    329 layer at (49,116) size 7x15 scrollHeight 17
    330   RenderMathMLBlock (block) {mo} at (0,19) size 7x15
    331 layer at (88,97) size 7x9 scrollHeight 18
    332   RenderMathMLBlock (block) {mo} at (0,0) size 7x9
    333 layer at (88,106) size 7x10 scrollHeight 17
    334   RenderMathMLBlock (block) {mo} at (0,9) size 7x10
    335 layer at (88,116) size 7x15 scrollHeight 17
    336   RenderMathMLBlock (block) {mo} at (0,19) size 7x15
    337 layer at (102,97) size 5x10 scrollHeight 18
    338   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    339 layer at (102,107) size 5x8 scrollHeight 17
    340   RenderMathMLBlock (block) {mo} at (0,10) size 5x8
    341     RenderText {mo} at (0,-4) size 5x21
    342       text run at (0,-4) width 5: "\x{23A2}"
    343 layer at (102,115) size 5x15 scrollHeight 17
    344   RenderMathMLBlock (block) {mo} at (0,18) size 5x15
    345 layer at (139,97) size 5x10 scrollHeight 18
    346   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    347 layer at (139,107) size 5x8 scrollHeight 17
    348   RenderMathMLBlock (block) {mo} at (0,10) size 5x8
    349     RenderText {mo} at (0,-4) size 5x21
    350       text run at (0,-4) width 5: "\x{23A5}"
    351 layer at (139,115) size 5x15 scrollHeight 17
    352   RenderMathMLBlock (block) {mo} at (0,18) size 5x15
    353 layer at (151,97) size 5x10 scrollHeight 18
    354   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    355 layer at (151,107) size 5x8 scrollHeight 17
    356   RenderMathMLBlock (block) {mo} at (0,10) size 5x8
    357     RenderText {mo} at (0,-4) size 5x21
    358       text run at (0,-4) width 5: "\x{239C}"
    359 layer at (151,115) size 5x14 scrollHeight 17
    360   RenderMathMLBlock (block) {mo} at (0,18) size 5x14
    361 layer at (188,97) size 5x10 scrollHeight 18
    362   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    363 layer at (188,107) size 5x8 scrollHeight 17
    364   RenderMathMLBlock (block) {mo} at (0,10) size 5x8
    365     RenderText {mo} at (0,-4) size 5x21
    366       text run at (0,-4) width 5: "\x{239F}"
    367 layer at (188,115) size 5x14 scrollHeight 17
    368   RenderMathMLBlock (block) {mo} at (0,18) size 5x14
    369 layer at (200,97) size 7x4 scrollHeight 13
    370   RenderMathMLBlock (block) {mo} at (0,0) size 7x4
    371 layer at (200,101) size 7x4 scrollHeight 12
    372   RenderMathMLBlock (block) {mo} at (0,4) size 7x4
    373     RenderText {mo} at (0,-9) size 7x21
    374       text run at (0,-9) width 7: "\x{23D0}"
    375 layer at (200,105) size 7x4 scrollHeight 12
    376   RenderMathMLBlock (block) {mo} at (0,8) size 7x4
    377     RenderText {mo} at (0,-9) size 7x21
    378       text run at (0,-9) width 7: "\x{23D0}"
    379 layer at (200,109) size 7x4 scrollHeight 12
    380   RenderMathMLBlock (block) {mo} at (0,12) size 7x4
    381     RenderText {mo} at (0,-9) size 7x21
    382       text run at (0,-9) width 7: "\x{23D0}"
    383 layer at (200,113) size 7x4 scrollHeight 12
    384   RenderMathMLBlock (block) {mo} at (0,16) size 7x4
    385     RenderText {mo} at (0,-9) size 7x21
    386       text run at (0,-9) width 7: "\x{23D0}"
    387 layer at (200,117) size 7x4 scrollHeight 12
    388   RenderMathMLBlock (block) {mo} at (0,20) size 7x4
    389     RenderText {mo} at (0,-9) size 7x21
    390       text run at (0,-9) width 7: "\x{23D0}"
    391 layer at (200,121) size 7x7 scrollHeight 12
    392   RenderMathMLBlock (block) {mo} at (0,24) size 7x7
    393 layer at (239,97) size 7x4 scrollHeight 13
    394   RenderMathMLBlock (block) {mo} at (0,0) size 7x4
    395 layer at (239,101) size 7x4 scrollHeight 12
    396   RenderMathMLBlock (block) {mo} at (0,4) size 7x4
    397     RenderText {mo} at (0,-9) size 7x21
    398       text run at (0,-9) width 7: "\x{23D0}"
    399 layer at (239,105) size 7x4 scrollHeight 12
    400   RenderMathMLBlock (block) {mo} at (0,8) size 7x4
    401     RenderText {mo} at (0,-9) size 7x21
    402       text run at (0,-9) width 7: "\x{23D0}"
    403 layer at (239,109) size 7x4 scrollHeight 12
    404   RenderMathMLBlock (block) {mo} at (0,12) size 7x4
    405     RenderText {mo} at (0,-9) size 7x21
    406       text run at (0,-9) width 7: "\x{23D0}"
    407 layer at (239,113) size 7x4 scrollHeight 12
    408   RenderMathMLBlock (block) {mo} at (0,16) size 7x4
    409     RenderText {mo} at (0,-9) size 7x21
    410       text run at (0,-9) width 7: "\x{23D0}"
    411 layer at (239,117) size 7x4 scrollHeight 12
    412   RenderMathMLBlock (block) {mo} at (0,20) size 7x4
    413     RenderText {mo} at (0,-9) size 7x21
    414       text run at (0,-9) width 7: "\x{23D0}"
    415 layer at (239,121) size 7x7 scrollHeight 12
    416   RenderMathMLBlock (block) {mo} at (0,24) size 7x7
    417 layer at (253,97) size 10x10 scrollHeight 18
    418   RenderMathMLBlock (block) {mo} at (0,0) size 10x10
    419 layer at (253,107) size 10x8 scrollHeight 17
    420   RenderMathMLBlock (block) {mo} at (0,10) size 10x8
    421     RenderText {mo} at (0,-4) size 10x21
    422       text run at (0,-4) width 10: "\x{23AE}"
    423 layer at (253,115) size 10x15 scrollHeight 17
    424   RenderMathMLBlock (block) {mo} at (0,18) size 10x15
    425 layer at (49,157) size 7x10 scrollHeight 18
    426   RenderMathMLBlock (block) {mo} at (0,0) size 7x10
    427 layer at (49,167) size 7x4 scrollHeight 17
    428   RenderMathMLBlock (block) {mo} at (0,10) size 7x4
    429     RenderText {mo} at (0,-4) size 7x21
    430       text run at (0,-4) width 7: "\x{23AA}"
    431 layer at (49,171) size 7x10 scrollHeight 17
    432   RenderMathMLBlock (block) {mo} at (0,14) size 7x10
    433 layer at (49,181) size 7x4 scrollHeight 17
    434   RenderMathMLBlock (block) {mo} at (0,24) size 7x4
    435     RenderText {mo} at (0,-4) size 7x21
    436       text run at (0,-4) width 7: "\x{23AA}"
    437 layer at (49,185) size 7x15 scrollHeight 17
    438   RenderMathMLBlock (block) {mo} at (0,28) size 7x15
    439 layer at (96,157) size 7x10 scrollHeight 18
    440   RenderMathMLBlock (block) {mo} at (0,0) size 7x10
    441 layer at (96,167) size 7x4 scrollHeight 17
    442   RenderMathMLBlock (block) {mo} at (0,10) size 7x4
    443     RenderText {mo} at (0,-4) size 7x21
    444       text run at (0,-4) width 7: "\x{23AA}"
    445 layer at (96,171) size 7x10 scrollHeight 17
    446   RenderMathMLBlock (block) {mo} at (0,14) size 7x10
    447 layer at (96,181) size 7x4 scrollHeight 17
    448   RenderMathMLBlock (block) {mo} at (0,24) size 7x4
    449     RenderText {mo} at (0,-4) size 7x21
    450       text run at (0,-4) width 7: "\x{23AA}"
    451 layer at (96,185) size 7x15 scrollHeight 17
    452   RenderMathMLBlock (block) {mo} at (0,28) size 7x15
    453 layer at (110,157) size 5x10 scrollHeight 18
    454   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    455 layer at (110,167) size 5x10 scrollHeight 17
    456   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    457     RenderText {mo} at (0,-4) size 5x21
    458       text run at (0,-4) width 5: "\x{23A2}"
    459 layer at (110,177) size 5x8 scrollHeight 17
    460   RenderMathMLBlock (block) {mo} at (0,20) size 5x8
    461     RenderText {mo} at (0,-4) size 5x21
    462       text run at (0,-4) width 5: "\x{23A2}"
    463 layer at (110,185) size 5x15 scrollHeight 17
    464   RenderMathMLBlock (block) {mo} at (0,28) size 5x15
    465 layer at (155,157) size 5x10 scrollHeight 18
    466   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    467 layer at (155,167) size 5x10 scrollHeight 17
    468   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    469     RenderText {mo} at (0,-4) size 5x21
    470       text run at (0,-4) width 5: "\x{23A5}"
    471 layer at (155,177) size 5x8 scrollHeight 17
    472   RenderMathMLBlock (block) {mo} at (0,20) size 5x8
    473     RenderText {mo} at (0,-4) size 5x21
    474       text run at (0,-4) width 5: "\x{23A5}"
    475 layer at (155,185) size 5x15 scrollHeight 17
    476   RenderMathMLBlock (block) {mo} at (0,28) size 5x15
    477 layer at (167,157) size 5x10 scrollHeight 18
    478   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    479 layer at (167,167) size 5x10 scrollHeight 17
    480   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    481     RenderText {mo} at (0,-4) size 5x21
    482       text run at (0,-4) width 5: "\x{239C}"
    483 layer at (167,177) size 5x8 scrollHeight 17
    484   RenderMathMLBlock (block) {mo} at (0,20) size 5x8
    485     RenderText {mo} at (0,-4) size 5x21
    486       text run at (0,-4) width 5: "\x{239C}"
    487 layer at (167,185) size 5x14 scrollHeight 17
    488   RenderMathMLBlock (block) {mo} at (0,28) size 5x14
    489 layer at (212,157) size 5x10 scrollHeight 18
    490   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    491 layer at (212,167) size 5x10 scrollHeight 17
    492   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    493     RenderText {mo} at (0,-4) size 5x21
    494       text run at (0,-4) width 5: "\x{239F}"
    495 layer at (212,177) size 5x8 scrollHeight 17
    496   RenderMathMLBlock (block) {mo} at (0,20) size 5x8
    497     RenderText {mo} at (0,-4) size 5x21
    498       text run at (0,-4) width 5: "\x{239F}"
    499 layer at (212,185) size 5x14 scrollHeight 17
    500   RenderMathMLBlock (block) {mo} at (0,28) size 5x14
    501 layer at (224,157) size 7x4 scrollHeight 13
    502   RenderMathMLBlock (block) {mo} at (0,0) size 7x4
    503 layer at (224,161) size 7x4 scrollHeight 12
    504   RenderMathMLBlock (block) {mo} at (0,4) size 7x4
    505     RenderText {mo} at (0,-9) size 7x21
    506       text run at (0,-9) width 7: "\x{23D0}"
    507 layer at (224,165) size 7x4 scrollHeight 12
    508   RenderMathMLBlock (block) {mo} at (0,8) size 7x4
    509     RenderText {mo} at (0,-9) size 7x21
    510       text run at (0,-9) width 7: "\x{23D0}"
    511 layer at (224,169) size 7x4 scrollHeight 12
    512   RenderMathMLBlock (block) {mo} at (0,12) size 7x4
    513     RenderText {mo} at (0,-9) size 7x21
    514       text run at (0,-9) width 7: "\x{23D0}"
    515 layer at (224,173) size 7x4 scrollHeight 12
    516   RenderMathMLBlock (block) {mo} at (0,16) size 7x4
    517     RenderText {mo} at (0,-9) size 7x21
    518       text run at (0,-9) width 7: "\x{23D0}"
    519 layer at (224,177) size 7x4 scrollHeight 12
    520   RenderMathMLBlock (block) {mo} at (0,20) size 7x4
    521     RenderText {mo} at (0,-9) size 7x21
    522       text run at (0,-9) width 7: "\x{23D0}"
    523 layer at (224,181) size 7x4 scrollHeight 12
    524   RenderMathMLBlock (block) {mo} at (0,24) size 7x4
    525     RenderText {mo} at (0,-9) size 7x21
    526       text run at (0,-9) width 7: "\x{23D0}"
    527 layer at (224,185) size 7x4 scrollHeight 12
    528   RenderMathMLBlock (block) {mo} at (0,28) size 7x4
    529     RenderText {mo} at (0,-9) size 7x21
    530       text run at (0,-9) width 7: "\x{23D0}"
    531 layer at (224,189) size 7x2 scrollHeight 12
    532   RenderMathMLBlock (block) {mo} at (0,32) size 7x2
    533     RenderText {mo} at (0,-9) size 7x21
    534       text run at (0,-9) width 7: "\x{23D0}"
    535 layer at (224,191) size 7x7 scrollHeight 12
    536   RenderMathMLBlock (block) {mo} at (0,34) size 7x7
    537 layer at (271,157) size 7x4 scrollHeight 13
    538   RenderMathMLBlock (block) {mo} at (0,0) size 7x4
    539 layer at (271,161) size 7x4 scrollHeight 12
    540   RenderMathMLBlock (block) {mo} at (0,4) size 7x4
    541     RenderText {mo} at (0,-9) size 7x21
    542       text run at (0,-9) width 7: "\x{23D0}"
    543 layer at (271,165) size 7x4 scrollHeight 12
    544   RenderMathMLBlock (block) {mo} at (0,8) size 7x4
    545     RenderText {mo} at (0,-9) size 7x21
    546       text run at (0,-9) width 7: "\x{23D0}"
    547 layer at (271,169) size 7x4 scrollHeight 12
    548   RenderMathMLBlock (block) {mo} at (0,12) size 7x4
    549     RenderText {mo} at (0,-9) size 7x21
    550       text run at (0,-9) width 7: "\x{23D0}"
    551 layer at (271,173) size 7x4 scrollHeight 12
    552   RenderMathMLBlock (block) {mo} at (0,16) size 7x4
    553     RenderText {mo} at (0,-9) size 7x21
    554       text run at (0,-9) width 7: "\x{23D0}"
    555 layer at (271,177) size 7x4 scrollHeight 12
    556   RenderMathMLBlock (block) {mo} at (0,20) size 7x4
    557     RenderText {mo} at (0,-9) size 7x21
    558       text run at (0,-9) width 7: "\x{23D0}"
    559 layer at (271,181) size 7x4 scrollHeight 12
    560   RenderMathMLBlock (block) {mo} at (0,24) size 7x4
    561     RenderText {mo} at (0,-9) size 7x21
    562       text run at (0,-9) width 7: "\x{23D0}"
    563 layer at (271,185) size 7x4 scrollHeight 12
    564   RenderMathMLBlock (block) {mo} at (0,28) size 7x4
    565     RenderText {mo} at (0,-9) size 7x21
    566       text run at (0,-9) width 7: "\x{23D0}"
    567 layer at (271,189) size 7x2 scrollHeight 12
    568   RenderMathMLBlock (block) {mo} at (0,32) size 7x2
    569     RenderText {mo} at (0,-9) size 7x21
    570       text run at (0,-9) width 7: "\x{23D0}"
    571 layer at (271,191) size 7x7 scrollHeight 12
    572   RenderMathMLBlock (block) {mo} at (0,34) size 7x7
    573 layer at (285,157) size 10x10 scrollHeight 18
    574   RenderMathMLBlock (block) {mo} at (0,0) size 10x10
    575 layer at (285,167) size 10x10 scrollHeight 17
    576   RenderMathMLBlock (block) {mo} at (0,10) size 10x10
    577     RenderText {mo} at (0,-4) size 10x21
    578       text run at (0,-4) width 10: "\x{23AE}"
    579 layer at (285,177) size 10x8 scrollHeight 17
    580   RenderMathMLBlock (block) {mo} at (0,20) size 10x8
    581     RenderText {mo} at (0,-4) size 10x21
    582       text run at (0,-4) width 10: "\x{23AE}"
    583 layer at (285,185) size 10x15 scrollHeight 17
    584   RenderMathMLBlock (block) {mo} at (0,28) size 10x15
    585 layer at (49,231) size 7x10 scrollHeight 18
    586   RenderMathMLBlock (block) {mo} at (0,0) size 7x10
    587 layer at (49,241) size 7x10 scrollHeight 17
    588   RenderMathMLBlock (block) {mo} at (0,10) size 7x10
    589     RenderText {mo} at (0,-4) size 7x21
    590       text run at (0,-4) width 7: "\x{23AA}"
    591 layer at (49,251) size 7x3 scrollHeight 17
    592   RenderMathMLBlock (block) {mo} at (0,20) size 7x3
    593     RenderText {mo} at (0,-4) size 7x21
    594       text run at (0,-4) width 7: "\x{23AA}"
    595 layer at (49,254) size 7x10 scrollHeight 17
    596   RenderMathMLBlock (block) {mo} at (0,23) size 7x10
    597 layer at (49,264) size 7x10 scrollHeight 17
    598   RenderMathMLBlock (block) {mo} at (0,33) size 7x10
    599     RenderText {mo} at (0,-4) size 7x21
    600       text run at (0,-4) width 7: "\x{23AA}"
    601 layer at (49,274) size 7x4 scrollHeight 17
    602   RenderMathMLBlock (block) {mo} at (0,43) size 7x4
    603     RenderText {mo} at (0,-4) size 7x21
    604       text run at (0,-4) width 7: "\x{23AA}"
    605 layer at (49,278) size 7x15 scrollHeight 17
    606   RenderMathMLBlock (block) {mo} at (0,47) size 7x15
    607 layer at (112,231) size 7x10 scrollHeight 18
    608   RenderMathMLBlock (block) {mo} at (0,0) size 7x10
    609 layer at (112,241) size 7x10 scrollHeight 17
    610   RenderMathMLBlock (block) {mo} at (0,10) size 7x10
    611     RenderText {mo} at (0,-4) size 7x21
    612       text run at (0,-4) width 7: "\x{23AA}"
    613 layer at (112,251) size 7x3 scrollHeight 17
    614   RenderMathMLBlock (block) {mo} at (0,20) size 7x3
    615     RenderText {mo} at (0,-4) size 7x21
    616       text run at (0,-4) width 7: "\x{23AA}"
    617 layer at (112,254) size 7x10 scrollHeight 17
    618   RenderMathMLBlock (block) {mo} at (0,23) size 7x10
    619 layer at (112,264) size 7x10 scrollHeight 17
    620   RenderMathMLBlock (block) {mo} at (0,33) size 7x10
    621     RenderText {mo} at (0,-4) size 7x21
    622       text run at (0,-4) width 7: "\x{23AA}"
    623 layer at (112,274) size 7x4 scrollHeight 17
    624   RenderMathMLBlock (block) {mo} at (0,43) size 7x4
    625     RenderText {mo} at (0,-4) size 7x21
    626       text run at (0,-4) width 7: "\x{23AA}"
    627 layer at (112,278) size 7x15 scrollHeight 17
    628   RenderMathMLBlock (block) {mo} at (0,47) size 7x15
    629 layer at (126,231) size 5x10 scrollHeight 18
    630   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    631 layer at (126,241) size 5x10 scrollHeight 17
    632   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    633     RenderText {mo} at (0,-4) size 5x21
    634       text run at (0,-4) width 5: "\x{23A2}"
    635 layer at (126,251) size 5x10 scrollHeight 17
    636   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    637     RenderText {mo} at (0,-4) size 5x21
    638       text run at (0,-4) width 5: "\x{23A2}"
    639 layer at (126,261) size 5x10 scrollHeight 17
    640   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    641     RenderText {mo} at (0,-4) size 5x21
    642       text run at (0,-4) width 5: "\x{23A2}"
    643 layer at (126,271) size 5x7 scrollHeight 17
    644   RenderMathMLBlock (block) {mo} at (0,40) size 5x7
    645     RenderText {mo} at (0,-4) size 5x21
    646       text run at (0,-4) width 5: "\x{23A2}"
    647 layer at (126,278) size 5x15 scrollHeight 17
    648   RenderMathMLBlock (block) {mo} at (0,47) size 5x15
    649 layer at (187,231) size 5x10 scrollHeight 18
    650   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    651 layer at (187,241) size 5x10 scrollHeight 17
    652   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    653     RenderText {mo} at (0,-4) size 5x21
    654       text run at (0,-4) width 5: "\x{23A5}"
    655 layer at (187,251) size 5x10 scrollHeight 17
    656   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    657     RenderText {mo} at (0,-4) size 5x21
    658       text run at (0,-4) width 5: "\x{23A5}"
    659 layer at (187,261) size 5x10 scrollHeight 17
    660   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    661     RenderText {mo} at (0,-4) size 5x21
    662       text run at (0,-4) width 5: "\x{23A5}"
    663 layer at (187,271) size 5x7 scrollHeight 17
    664   RenderMathMLBlock (block) {mo} at (0,40) size 5x7
    665     RenderText {mo} at (0,-4) size 5x21
    666       text run at (0,-4) width 5: "\x{23A5}"
    667 layer at (187,278) size 5x15 scrollHeight 17
    668   RenderMathMLBlock (block) {mo} at (0,47) size 5x15
    669 layer at (199,231) size 5x10 scrollHeight 18
    670   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    671 layer at (199,241) size 5x10 scrollHeight 17
    672   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    673     RenderText {mo} at (0,-4) size 5x21
    674       text run at (0,-4) width 5: "\x{239C}"
    675 layer at (199,251) size 5x10 scrollHeight 17
    676   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    677     RenderText {mo} at (0,-4) size 5x21
    678       text run at (0,-4) width 5: "\x{239C}"
    679 layer at (199,261) size 5x10 scrollHeight 17
    680   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    681     RenderText {mo} at (0,-4) size 5x21
    682       text run at (0,-4) width 5: "\x{239C}"
    683 layer at (199,271) size 5x7 scrollHeight 17
    684   RenderMathMLBlock (block) {mo} at (0,40) size 5x7
    685     RenderText {mo} at (0,-4) size 5x21
    686       text run at (0,-4) width 5: "\x{239C}"
    687 layer at (199,278) size 5x14 scrollHeight 17
    688   RenderMathMLBlock (block) {mo} at (0,47) size 5x14
    689 layer at (260,231) size 5x10 scrollHeight 18
    690   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    691 layer at (260,241) size 5x10 scrollHeight 17
    692   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    693     RenderText {mo} at (0,-4) size 5x21
    694       text run at (0,-4) width 5: "\x{239F}"
    695 layer at (260,251) size 5x10 scrollHeight 17
    696   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    697     RenderText {mo} at (0,-4) size 5x21
    698       text run at (0,-4) width 5: "\x{239F}"
    699 layer at (260,261) size 5x10 scrollHeight 17
    700   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    701     RenderText {mo} at (0,-4) size 5x21
    702       text run at (0,-4) width 5: "\x{239F}"
    703 layer at (260,271) size 5x7 scrollHeight 17
    704   RenderMathMLBlock (block) {mo} at (0,40) size 5x7
    705     RenderText {mo} at (0,-4) size 5x21
    706       text run at (0,-4) width 5: "\x{239F}"
    707 layer at (260,278) size 5x14 scrollHeight 17
    708   RenderMathMLBlock (block) {mo} at (0,47) size 5x14
    709 layer at (272,231) size 7x4 scrollHeight 13
    710   RenderMathMLBlock (block) {mo} at (0,0) size 7x4
     368layer at (49,90) size 7x9 scrollHeight 18
     369  RenderMathMLBlock (flex) {mo} at (0,0) size 7x9
     370    RenderBlock (anonymous) at (0,0) size 7x9
     371layer at (49,99) size 7x10 scrollHeight 17
     372  RenderMathMLBlock (flex) {mo} at (0,9) size 7x10
     373    RenderBlock (anonymous) at (0,0) size 7x10
     374layer at (49,109) size 7x15 scrollHeight 17
     375  RenderMathMLBlock (flex) {mo} at (0,19) size 7x15
     376    RenderBlock (anonymous) at (0,0) size 7x15
     377layer at (88,90) size 7x9 scrollHeight 18
     378  RenderMathMLBlock (flex) {mo} at (0,0) size 7x9
     379    RenderBlock (anonymous) at (0,0) size 7x9
     380layer at (88,99) size 7x10 scrollHeight 17
     381  RenderMathMLBlock (flex) {mo} at (0,9) size 7x10
     382    RenderBlock (anonymous) at (0,0) size 7x10
     383layer at (88,109) size 7x15 scrollHeight 17
     384  RenderMathMLBlock (flex) {mo} at (0,19) size 7x15
     385    RenderBlock (anonymous) at (0,0) size 7x15
     386layer at (102,90) size 5x10 scrollHeight 18
     387  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     388    RenderBlock (anonymous) at (0,0) size 5x10
     389layer at (102,100) size 5x8 scrollHeight 17
     390  RenderMathMLBlock (flex) {mo} at (0,10) size 5x8
     391    RenderBlock (anonymous) at (0,0) size 5x8
     392      RenderText {mo} at (0,-4) size 5x21
     393        text run at (0,-4) width 5: "\x{23A2}"
     394layer at (102,108) size 5x15 scrollHeight 17
     395  RenderMathMLBlock (flex) {mo} at (0,18) size 5x15
     396    RenderBlock (anonymous) at (0,0) size 5x15
     397layer at (139,90) size 5x10 scrollHeight 18
     398  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     399    RenderBlock (anonymous) at (0,0) size 5x10
     400layer at (139,100) size 5x8 scrollHeight 17
     401  RenderMathMLBlock (flex) {mo} at (0,10) size 5x8
     402    RenderBlock (anonymous) at (0,0) size 5x8
     403      RenderText {mo} at (0,-4) size 5x21
     404        text run at (0,-4) width 5: "\x{23A5}"
     405layer at (139,108) size 5x15 scrollHeight 17
     406  RenderMathMLBlock (flex) {mo} at (0,18) size 5x15
     407    RenderBlock (anonymous) at (0,0) size 5x15
     408layer at (151,90) size 5x10 scrollHeight 18
     409  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     410    RenderBlock (anonymous) at (0,0) size 5x10
     411layer at (151,100) size 5x8 scrollHeight 17
     412  RenderMathMLBlock (flex) {mo} at (0,10) size 5x8
     413    RenderBlock (anonymous) at (0,0) size 5x8
     414      RenderText {mo} at (0,-4) size 5x21
     415        text run at (0,-4) width 5: "\x{239C}"
     416layer at (151,108) size 5x14 scrollHeight 17
     417  RenderMathMLBlock (flex) {mo} at (0,18) size 5x14
     418    RenderBlock (anonymous) at (0,0) size 5x14
     419layer at (188,90) size 5x10 scrollHeight 18
     420  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     421    RenderBlock (anonymous) at (0,0) size 5x10
     422layer at (188,100) size 5x8 scrollHeight 17
     423  RenderMathMLBlock (flex) {mo} at (0,10) size 5x8
     424    RenderBlock (anonymous) at (0,0) size 5x8
     425      RenderText {mo} at (0,-4) size 5x21
     426        text run at (0,-4) width 5: "\x{239F}"
     427layer at (188,108) size 5x14 scrollHeight 17
     428  RenderMathMLBlock (flex) {mo} at (0,18) size 5x14
     429    RenderBlock (anonymous) at (0,0) size 5x14
     430layer at (200,90) size 7x4 scrollHeight 13
     431  RenderMathMLBlock (flex) {mo} at (0,0) size 7x4
     432    RenderBlock (anonymous) at (0,0) size 7x4
     433layer at (200,94) size 7x4 scrollHeight 12
     434  RenderMathMLBlock (flex) {mo} at (0,4) size 7x4
     435    RenderBlock (anonymous) at (0,0) size 7x4
     436      RenderText {mo} at (0,-9) size 7x21
     437        text run at (0,-9) width 7: "\x{23D0}"
     438layer at (200,98) size 7x4 scrollHeight 12
     439  RenderMathMLBlock (flex) {mo} at (0,8) size 7x4
     440    RenderBlock (anonymous) at (0,0) size 7x4
     441      RenderText {mo} at (0,-9) size 7x21
     442        text run at (0,-9) width 7: "\x{23D0}"
     443layer at (200,102) size 7x4 scrollHeight 12
     444  RenderMathMLBlock (flex) {mo} at (0,12) size 7x4
     445    RenderBlock (anonymous) at (0,0) size 7x4
     446      RenderText {mo} at (0,-9) size 7x21
     447        text run at (0,-9) width 7: "\x{23D0}"
     448layer at (200,106) size 7x4 scrollHeight 12
     449  RenderMathMLBlock (flex) {mo} at (0,16) size 7x4
     450    RenderBlock (anonymous) at (0,0) size 7x4
     451      RenderText {mo} at (0,-9) size 7x21
     452        text run at (0,-9) width 7: "\x{23D0}"
     453layer at (200,110) size 7x4 scrollHeight 12
     454  RenderMathMLBlock (flex) {mo} at (0,20) size 7x4
     455    RenderBlock (anonymous) at (0,0) size 7x4
     456      RenderText {mo} at (0,-9) size 7x21
     457        text run at (0,-9) width 7: "\x{23D0}"
     458layer at (200,114) size 7x7 scrollHeight 12
     459  RenderMathMLBlock (flex) {mo} at (0,24) size 7x7
     460    RenderBlock (anonymous) at (0,0) size 7x7
     461layer at (239,90) size 7x4 scrollHeight 13
     462  RenderMathMLBlock (flex) {mo} at (0,0) size 7x4
     463    RenderBlock (anonymous) at (0,0) size 7x4
     464layer at (239,94) size 7x4 scrollHeight 12
     465  RenderMathMLBlock (flex) {mo} at (0,4) size 7x4
     466    RenderBlock (anonymous) at (0,0) size 7x4
     467      RenderText {mo} at (0,-9) size 7x21
     468        text run at (0,-9) width 7: "\x{23D0}"
     469layer at (239,98) size 7x4 scrollHeight 12
     470  RenderMathMLBlock (flex) {mo} at (0,8) size 7x4
     471    RenderBlock (anonymous) at (0,0) size 7x4
     472      RenderText {mo} at (0,-9) size 7x21
     473        text run at (0,-9) width 7: "\x{23D0}"
     474layer at (239,102) size 7x4 scrollHeight 12
     475  RenderMathMLBlock (flex) {mo} at (0,12) size 7x4
     476    RenderBlock (anonymous) at (0,0) size 7x4
     477      RenderText {mo} at (0,-9) size 7x21
     478        text run at (0,-9) width 7: "\x{23D0}"
     479layer at (239,106) size 7x4 scrollHeight 12
     480  RenderMathMLBlock (flex) {mo} at (0,16) size 7x4
     481    RenderBlock (anonymous) at (0,0) size 7x4
     482      RenderText {mo} at (0,-9) size 7x21
     483        text run at (0,-9) width 7: "\x{23D0}"
     484layer at (239,110) size 7x4 scrollHeight 12
     485  RenderMathMLBlock (flex) {mo} at (0,20) size 7x4
     486    RenderBlock (anonymous) at (0,0) size 7x4
     487      RenderText {mo} at (0,-9) size 7x21
     488        text run at (0,-9) width 7: "\x{23D0}"
     489layer at (239,114) size 7x7 scrollHeight 12
     490  RenderMathMLBlock (flex) {mo} at (0,24) size 7x7
     491    RenderBlock (anonymous) at (0,0) size 7x7
     492layer at (253,90) size 10x10 scrollHeight 18
     493  RenderMathMLBlock (flex) {mo} at (0,0) size 10x10
     494    RenderBlock (anonymous) at (0,0) size 10x10
     495layer at (253,100) size 10x8 scrollHeight 17
     496  RenderMathMLBlock (flex) {mo} at (0,10) size 10x8
     497    RenderBlock (anonymous) at (0,0) size 10x8
     498      RenderText {mo} at (0,-4) size 10x21
     499        text run at (0,-4) width 10: "\x{23AE}"
     500layer at (253,108) size 10x15 scrollHeight 17
     501  RenderMathMLBlock (flex) {mo} at (0,18) size 10x15
     502    RenderBlock (anonymous) at (0,0) size 10x15
     503layer at (49,140) size 7x10 scrollHeight 18
     504  RenderMathMLBlock (flex) {mo} at (0,0) size 7x10
     505    RenderBlock (anonymous) at (0,0) size 7x10
     506layer at (49,150) size 7x4 scrollHeight 17
     507  RenderMathMLBlock (flex) {mo} at (0,10) size 7x4
     508    RenderBlock (anonymous) at (0,0) size 7x4
     509      RenderText {mo} at (0,-4) size 7x21
     510        text run at (0,-4) width 7: "\x{23AA}"
     511layer at (49,154) size 7x10 scrollHeight 17
     512  RenderMathMLBlock (flex) {mo} at (0,14) size 7x10
     513    RenderBlock (anonymous) at (0,0) size 7x10
     514layer at (49,164) size 7x4 scrollHeight 17
     515  RenderMathMLBlock (flex) {mo} at (0,24) size 7x4
     516    RenderBlock (anonymous) at (0,0) size 7x4
     517      RenderText {mo} at (0,-4) size 7x21
     518        text run at (0,-4) width 7: "\x{23AA}"
     519layer at (49,168) size 7x15 scrollHeight 17
     520  RenderMathMLBlock (flex) {mo} at (0,28) size 7x15
     521    RenderBlock (anonymous) at (0,0) size 7x15
     522layer at (96,140) size 7x10 scrollHeight 18
     523  RenderMathMLBlock (flex) {mo} at (0,0) size 7x10
     524    RenderBlock (anonymous) at (0,0) size 7x10
     525layer at (96,150) size 7x4 scrollHeight 17
     526  RenderMathMLBlock (flex) {mo} at (0,10) size 7x4
     527    RenderBlock (anonymous) at (0,0) size 7x4
     528      RenderText {mo} at (0,-4) size 7x21
     529        text run at (0,-4) width 7: "\x{23AA}"
     530layer at (96,154) size 7x10 scrollHeight 17
     531  RenderMathMLBlock (flex) {mo} at (0,14) size 7x10
     532    RenderBlock (anonymous) at (0,0) size 7x10
     533layer at (96,164) size 7x4 scrollHeight 17
     534  RenderMathMLBlock (flex) {mo} at (0,24) size 7x4
     535    RenderBlock (anonymous) at (0,0) size 7x4
     536      RenderText {mo} at (0,-4) size 7x21
     537        text run at (0,-4) width 7: "\x{23AA}"
     538layer at (96,168) size 7x15 scrollHeight 17
     539  RenderMathMLBlock (flex) {mo} at (0,28) size 7x15
     540    RenderBlock (anonymous) at (0,0) size 7x15
     541layer at (110,140) size 5x10 scrollHeight 18
     542  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     543    RenderBlock (anonymous) at (0,0) size 5x10
     544layer at (110,150) size 5x10 scrollHeight 17
     545  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     546    RenderBlock (anonymous) at (0,0) size 5x10
     547      RenderText {mo} at (0,-4) size 5x21
     548        text run at (0,-4) width 5: "\x{23A2}"
     549layer at (110,160) size 5x8 scrollHeight 17
     550  RenderMathMLBlock (flex) {mo} at (0,20) size 5x8
     551    RenderBlock (anonymous) at (0,0) size 5x8
     552      RenderText {mo} at (0,-4) size 5x21
     553        text run at (0,-4) width 5: "\x{23A2}"
     554layer at (110,168) size 5x15 scrollHeight 17
     555  RenderMathMLBlock (flex) {mo} at (0,28) size 5x15
     556    RenderBlock (anonymous) at (0,0) size 5x15
     557layer at (155,140) size 5x10 scrollHeight 18
     558  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     559    RenderBlock (anonymous) at (0,0) size 5x10
     560layer at (155,150) size 5x10 scrollHeight 17
     561  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     562    RenderBlock (anonymous) at (0,0) size 5x10
     563      RenderText {mo} at (0,-4) size 5x21
     564        text run at (0,-4) width 5: "\x{23A5}"
     565layer at (155,160) size 5x8 scrollHeight 17
     566  RenderMathMLBlock (flex) {mo} at (0,20) size 5x8
     567    RenderBlock (anonymous) at (0,0) size 5x8
     568      RenderText {mo} at (0,-4) size 5x21
     569        text run at (0,-4) width 5: "\x{23A5}"
     570layer at (155,168) size 5x15 scrollHeight 17
     571  RenderMathMLBlock (flex) {mo} at (0,28) size 5x15
     572    RenderBlock (anonymous) at (0,0) size 5x15
     573layer at (167,140) size 5x10 scrollHeight 18
     574  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     575    RenderBlock (anonymous) at (0,0) size 5x10
     576layer at (167,150) size 5x10 scrollHeight 17
     577  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     578    RenderBlock (anonymous) at (0,0) size 5x10
     579      RenderText {mo} at (0,-4) size 5x21
     580        text run at (0,-4) width 5: "\x{239C}"
     581layer at (167,160) size 5x8 scrollHeight 17
     582  RenderMathMLBlock (flex) {mo} at (0,20) size 5x8
     583    RenderBlock (anonymous) at (0,0) size 5x8
     584      RenderText {mo} at (0,-4) size 5x21
     585        text run at (0,-4) width 5: "\x{239C}"
     586layer at (167,168) size 5x14 scrollHeight 17
     587  RenderMathMLBlock (flex) {mo} at (0,28) size 5x14
     588    RenderBlock (anonymous) at (0,0) size 5x14
     589layer at (212,140) size 5x10 scrollHeight 18
     590  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     591    RenderBlock (anonymous) at (0,0) size 5x10
     592layer at (212,150) size 5x10 scrollHeight 17
     593  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     594    RenderBlock (anonymous) at (0,0) size 5x10
     595      RenderText {mo} at (0,-4) size 5x21
     596        text run at (0,-4) width 5: "\x{239F}"
     597layer at (212,160) size 5x8 scrollHeight 17
     598  RenderMathMLBlock (flex) {mo} at (0,20) size 5x8
     599    RenderBlock (anonymous) at (0,0) size 5x8
     600      RenderText {mo} at (0,-4) size 5x21
     601        text run at (0,-4) width 5: "\x{239F}"
     602layer at (212,168) size 5x14 scrollHeight 17
     603  RenderMathMLBlock (flex) {mo} at (0,28) size 5x14
     604    RenderBlock (anonymous) at (0,0) size 5x14
     605layer at (224,140) size 7x4 scrollHeight 13
     606  RenderMathMLBlock (flex) {mo} at (0,0) size 7x4
     607    RenderBlock (anonymous) at (0,0) size 7x4
     608layer at (224,144) size 7x4 scrollHeight 12
     609  RenderMathMLBlock (flex) {mo} at (0,4) size 7x4
     610    RenderBlock (anonymous) at (0,0) size 7x4
     611      RenderText {mo} at (0,-9) size 7x21
     612        text run at (0,-9) width 7: "\x{23D0}"
     613layer at (224,148) size 7x4 scrollHeight 12
     614  RenderMathMLBlock (flex) {mo} at (0,8) size 7x4
     615    RenderBlock (anonymous) at (0,0) size 7x4
     616      RenderText {mo} at (0,-9) size 7x21
     617        text run at (0,-9) width 7: "\x{23D0}"
     618layer at (224,152) size 7x4 scrollHeight 12
     619  RenderMathMLBlock (flex) {mo} at (0,12) size 7x4
     620    RenderBlock (anonymous) at (0,0) size 7x4
     621      RenderText {mo} at (0,-9) size 7x21
     622        text run at (0,-9) width 7: "\x{23D0}"
     623layer at (224,156) size 7x4 scrollHeight 12
     624  RenderMathMLBlock (flex) {mo} at (0,16) size 7x4
     625    RenderBlock (anonymous) at (0,0) size 7x4
     626      RenderText {mo} at (0,-9) size 7x21
     627        text run at (0,-9) width 7: "\x{23D0}"
     628layer at (224,160) size 7x4 scrollHeight 12
     629  RenderMathMLBlock (flex) {mo} at (0,20) size 7x4
     630    RenderBlock (anonymous) at (0,0) size 7x4
     631      RenderText {mo} at (0,-9) size 7x21
     632        text run at (0,-9) width 7: "\x{23D0}"
     633layer at (224,164) size 7x4 scrollHeight 12
     634  RenderMathMLBlock (flex) {mo} at (0,24) size 7x4
     635    RenderBlock (anonymous) at (0,0) size 7x4
     636      RenderText {mo} at (0,-9) size 7x21
     637        text run at (0,-9) width 7: "\x{23D0}"
     638layer at (224,168) size 7x4 scrollHeight 12
     639  RenderMathMLBlock (flex) {mo} at (0,28) size 7x4
     640    RenderBlock (anonymous) at (0,0) size 7x4
     641      RenderText {mo} at (0,-9) size 7x21
     642        text run at (0,-9) width 7: "\x{23D0}"
     643layer at (224,172) size 7x2 scrollHeight 12
     644  RenderMathMLBlock (flex) {mo} at (0,32) size 7x2
     645    RenderBlock (anonymous) at (0,0) size 7x2
     646      RenderText {mo} at (0,-9) size 7x21
     647        text run at (0,-9) width 7: "\x{23D0}"
     648layer at (224,174) size 7x7 scrollHeight 12
     649  RenderMathMLBlock (flex) {mo} at (0,34) size 7x7
     650    RenderBlock (anonymous) at (0,0) size 7x7
     651layer at (271,140) size 7x4 scrollHeight 13
     652  RenderMathMLBlock (flex) {mo} at (0,0) size 7x4
     653    RenderBlock (anonymous) at (0,0) size 7x4
     654layer at (271,144) size 7x4 scrollHeight 12
     655  RenderMathMLBlock (flex) {mo} at (0,4) size 7x4
     656    RenderBlock (anonymous) at (0,0) size 7x4
     657      RenderText {mo} at (0,-9) size 7x21
     658        text run at (0,-9) width 7: "\x{23D0}"
     659layer at (271,148) size 7x4 scrollHeight 12
     660  RenderMathMLBlock (flex) {mo} at (0,8) size 7x4
     661    RenderBlock (anonymous) at (0,0) size 7x4
     662      RenderText {mo} at (0,-9) size 7x21
     663        text run at (0,-9) width 7: "\x{23D0}"
     664layer at (271,152) size 7x4 scrollHeight 12
     665  RenderMathMLBlock (flex) {mo} at (0,12) size 7x4
     666    RenderBlock (anonymous) at (0,0) size 7x4
     667      RenderText {mo} at (0,-9) size 7x21
     668        text run at (0,-9) width 7: "\x{23D0}"
     669layer at (271,156) size 7x4 scrollHeight 12
     670  RenderMathMLBlock (flex) {mo} at (0,16) size 7x4
     671    RenderBlock (anonymous) at (0,0) size 7x4
     672      RenderText {mo} at (0,-9) size 7x21
     673        text run at (0,-9) width 7: "\x{23D0}"
     674layer at (271,160) size 7x4 scrollHeight 12
     675  RenderMathMLBlock (flex) {mo} at (0,20) size 7x4
     676    RenderBlock (anonymous) at (0,0) size 7x4
     677      RenderText {mo} at (0,-9) size 7x21
     678        text run at (0,-9) width 7: "\x{23D0}"
     679layer at (271,164) size 7x4 scrollHeight 12
     680  RenderMathMLBlock (flex) {mo} at (0,24) size 7x4
     681    RenderBlock (anonymous) at (0,0) size 7x4
     682      RenderText {mo} at (0,-9) size 7x21
     683        text run at (0,-9) width 7: "\x{23D0}"
     684layer at (271,168) size 7x4 scrollHeight 12
     685  RenderMathMLBlock (flex) {mo} at (0,28) size 7x4
     686    RenderBlock (anonymous) at (0,0) size 7x4
     687      RenderText {mo} at (0,-9) size 7x21
     688        text run at (0,-9) width 7: "\x{23D0}"
     689layer at (271,172) size 7x2 scrollHeight 12
     690  RenderMathMLBlock (flex) {mo} at (0,32) size 7x2
     691    RenderBlock (anonymous) at (0,0) size 7x2
     692      RenderText {mo} at (0,-9) size 7x21
     693        text run at (0,-9) width 7: "\x{23D0}"
     694layer at (271,174) size 7x7 scrollHeight 12
     695  RenderMathMLBlock (flex) {mo} at (0,34) size 7x7
     696    RenderBlock (anonymous) at (0,0) size 7x7
     697layer at (285,140) size 10x10 scrollHeight 18
     698  RenderMathMLBlock (flex) {mo} at (0,0) size 10x10
     699    RenderBlock (anonymous) at (0,0) size 10x10
     700layer at (285,150) size 10x10 scrollHeight 17
     701  RenderMathMLBlock (flex) {mo} at (0,10) size 10x10
     702    RenderBlock (anonymous) at (0,0) size 10x10
     703      RenderText {mo} at (0,-4) size 10x21
     704        text run at (0,-4) width 10: "\x{23AE}"
     705layer at (285,160) size 10x8 scrollHeight 17
     706  RenderMathMLBlock (flex) {mo} at (0,20) size 10x8
     707    RenderBlock (anonymous) at (0,0) size 10x8
     708      RenderText {mo} at (0,-4) size 10x21
     709        text run at (0,-4) width 10: "\x{23AE}"
     710layer at (285,168) size 10x15 scrollHeight 17
     711  RenderMathMLBlock (flex) {mo} at (0,28) size 10x15
     712    RenderBlock (anonymous) at (0,0) size 10x15
     713layer at (49,199) size 7x10 scrollHeight 18
     714  RenderMathMLBlock (flex) {mo} at (0,0) size 7x10
     715    RenderBlock (anonymous) at (0,0) size 7x10
     716layer at (49,209) size 7x10 scrollHeight 17
     717  RenderMathMLBlock (flex) {mo} at (0,10) size 7x10
     718    RenderBlock (anonymous) at (0,0) size 7x10
     719      RenderText {mo} at (0,-4) size 7x21
     720        text run at (0,-4) width 7: "\x{23AA}"
     721layer at (49,219) size 7x3 scrollHeight 17
     722  RenderMathMLBlock (flex) {mo} at (0,20) size 7x3
     723    RenderBlock (anonymous) at (0,0) size 7x3
     724      RenderText {mo} at (0,-4) size 7x21
     725        text run at (0,-4) width 7: "\x{23AA}"
     726layer at (49,222) size 7x10 scrollHeight 17
     727  RenderMathMLBlock (flex) {mo} at (0,23) size 7x10
     728    RenderBlock (anonymous) at (0,0) size 7x10
     729layer at (49,232) size 7x10 scrollHeight 17
     730  RenderMathMLBlock (flex) {mo} at (0,33) size 7x10
     731    RenderBlock (anonymous) at (0,0) size 7x10
     732      RenderText {mo} at (0,-4) size 7x21
     733        text run at (0,-4) width 7: "\x{23AA}"
     734layer at (49,242) size 7x4 scrollHeight 17
     735  RenderMathMLBlock (flex) {mo} at (0,43) size 7x4
     736    RenderBlock (anonymous) at (0,0) size 7x4
     737      RenderText {mo} at (0,-4) size 7x21
     738        text run at (0,-4) width 7: "\x{23AA}"
     739layer at (49,246) size 7x15 scrollHeight 17
     740  RenderMathMLBlock (flex) {mo} at (0,47) size 7x15
     741    RenderBlock (anonymous) at (0,0) size 7x15
     742layer at (112,199) size 7x10 scrollHeight 18
     743  RenderMathMLBlock (flex) {mo} at (0,0) size 7x10
     744    RenderBlock (anonymous) at (0,0) size 7x10
     745layer at (112,209) size 7x10 scrollHeight 17
     746  RenderMathMLBlock (flex) {mo} at (0,10) size 7x10
     747    RenderBlock (anonymous) at (0,0) size 7x10
     748      RenderText {mo} at (0,-4) size 7x21
     749        text run at (0,-4) width 7: "\x{23AA}"
     750layer at (112,219) size 7x3 scrollHeight 17
     751  RenderMathMLBlock (flex) {mo} at (0,20) size 7x3
     752    RenderBlock (anonymous) at (0,0) size 7x3
     753      RenderText {mo} at (0,-4) size 7x21
     754        text run at (0,-4) width 7: "\x{23AA}"
     755layer at (112,222) size 7x10 scrollHeight 17
     756  RenderMathMLBlock (flex) {mo} at (0,23) size 7x10
     757    RenderBlock (anonymous) at (0,0) size 7x10
     758layer at (112,232) size 7x10 scrollHeight 17
     759  RenderMathMLBlock (flex) {mo} at (0,33) size 7x10
     760    RenderBlock (anonymous) at (0,0) size 7x10
     761      RenderText {mo} at (0,-4) size 7x21
     762        text run at (0,-4) width 7: "\x{23AA}"
     763layer at (112,242) size 7x4 scrollHeight 17
     764  RenderMathMLBlock (flex) {mo} at (0,43) size 7x4
     765    RenderBlock (anonymous) at (0,0) size 7x4
     766      RenderText {mo} at (0,-4) size 7x21
     767        text run at (0,-4) width 7: "\x{23AA}"
     768layer at (112,246) size 7x15 scrollHeight 17
     769  RenderMathMLBlock (flex) {mo} at (0,47) size 7x15
     770    RenderBlock (anonymous) at (0,0) size 7x15
     771layer at (126,199) size 5x10 scrollHeight 18
     772  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     773    RenderBlock (anonymous) at (0,0) size 5x10
     774layer at (126,209) size 5x10 scrollHeight 17
     775  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     776    RenderBlock (anonymous) at (0,0) size 5x10
     777      RenderText {mo} at (0,-4) size 5x21
     778        text run at (0,-4) width 5: "\x{23A2}"
     779layer at (126,219) size 5x10 scrollHeight 17
     780  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     781    RenderBlock (anonymous) at (0,0) size 5x10
     782      RenderText {mo} at (0,-4) size 5x21
     783        text run at (0,-4) width 5: "\x{23A2}"
     784layer at (126,229) size 5x10 scrollHeight 17
     785  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     786    RenderBlock (anonymous) at (0,0) size 5x10
     787      RenderText {mo} at (0,-4) size 5x21
     788        text run at (0,-4) width 5: "\x{23A2}"
     789layer at (126,239) size 5x7 scrollHeight 17
     790  RenderMathMLBlock (flex) {mo} at (0,40) size 5x7
     791    RenderBlock (anonymous) at (0,0) size 5x7
     792      RenderText {mo} at (0,-4) size 5x21
     793        text run at (0,-4) width 5: "\x{23A2}"
     794layer at (126,246) size 5x15 scrollHeight 17
     795  RenderMathMLBlock (flex) {mo} at (0,47) size 5x15
     796    RenderBlock (anonymous) at (0,0) size 5x15
     797layer at (187,199) size 5x10 scrollHeight 18
     798  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     799    RenderBlock (anonymous) at (0,0) size 5x10
     800layer at (187,209) size 5x10 scrollHeight 17
     801  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     802    RenderBlock (anonymous) at (0,0) size 5x10
     803      RenderText {mo} at (0,-4) size 5x21
     804        text run at (0,-4) width 5: "\x{23A5}"
     805layer at (187,219) size 5x10 scrollHeight 17
     806  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     807    RenderBlock (anonymous) at (0,0) size 5x10
     808      RenderText {mo} at (0,-4) size 5x21
     809        text run at (0,-4) width 5: "\x{23A5}"
     810layer at (187,229) size 5x10 scrollHeight 17
     811  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     812    RenderBlock (anonymous) at (0,0) size 5x10
     813      RenderText {mo} at (0,-4) size 5x21
     814        text run at (0,-4) width 5: "\x{23A5}"
     815layer at (187,239) size 5x7 scrollHeight 17
     816  RenderMathMLBlock (flex) {mo} at (0,40) size 5x7
     817    RenderBlock (anonymous) at (0,0) size 5x7
     818      RenderText {mo} at (0,-4) size 5x21
     819        text run at (0,-4) width 5: "\x{23A5}"
     820layer at (187,246) size 5x15 scrollHeight 17
     821  RenderMathMLBlock (flex) {mo} at (0,47) size 5x15
     822    RenderBlock (anonymous) at (0,0) size 5x15
     823layer at (199,199) size 5x10 scrollHeight 18
     824  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     825    RenderBlock (anonymous) at (0,0) size 5x10
     826layer at (199,209) size 5x10 scrollHeight 17
     827  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     828    RenderBlock (anonymous) at (0,0) size 5x10
     829      RenderText {mo} at (0,-4) size 5x21
     830        text run at (0,-4) width 5: "\x{239C}"
     831layer at (199,219) size 5x10 scrollHeight 17
     832  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     833    RenderBlock (anonymous) at (0,0) size 5x10
     834      RenderText {mo} at (0,-4) size 5x21
     835        text run at (0,-4) width 5: "\x{239C}"
     836layer at (199,229) size 5x10 scrollHeight 17
     837  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     838    RenderBlock (anonymous) at (0,0) size 5x10
     839      RenderText {mo} at (0,-4) size 5x21
     840        text run at (0,-4) width 5: "\x{239C}"
     841layer at (199,239) size 5x7 scrollHeight 17
     842  RenderMathMLBlock (flex) {mo} at (0,40) size 5x7
     843    RenderBlock (anonymous) at (0,0) size 5x7
     844      RenderText {mo} at (0,-4) size 5x21
     845        text run at (0,-4) width 5: "\x{239C}"
     846layer at (199,246) size 5x14 scrollHeight 17
     847  RenderMathMLBlock (flex) {mo} at (0,47) size 5x14
     848    RenderBlock (anonymous) at (0,0) size 5x14
     849layer at (260,199) size 5x10 scrollHeight 18
     850  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     851    RenderBlock (anonymous) at (0,0) size 5x10
     852layer at (260,209) size 5x10 scrollHeight 17
     853  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     854    RenderBlock (anonymous) at (0,0) size 5x10
     855      RenderText {mo} at (0,-4) size 5x21
     856        text run at (0,-4) width 5: "\x{239F}"
     857layer at (260,219) size 5x10 scrollHeight 17
     858  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     859    RenderBlock (anonymous) at (0,0) size 5x10
     860      RenderText {mo} at (0,-4) size 5x21
     861        text run at (0,-4) width 5: "\x{239F}"
     862layer at (260,229) size 5x10 scrollHeight 17
     863  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     864    RenderBlock (anonymous) at (0,0) size 5x10
     865      RenderText {mo} at (0,-4) size 5x21
     866        text run at (0,-4) width 5: "\x{239F}"
     867layer at (260,239) size 5x7 scrollHeight 17
     868  RenderMathMLBlock (flex) {mo} at (0,40) size 5x7
     869    RenderBlock (anonymous) at (0,0) size 5x7
     870      RenderText {mo} at (0,-4) size 5x21
     871        text run at (0,-4) width 5: "\x{239F}"
     872layer at (260,246) size 5x14 scrollHeight 17
     873  RenderMathMLBlock (flex) {mo} at (0,47) size 5x14
     874    RenderBlock (anonymous) at (0,0) size 5x14
     875layer at (272,199) size 7x4 scrollHeight 13
     876  RenderMathMLBlock (flex) {mo} at (0,0) size 7x4
     877    RenderBlock (anonymous) at (0,0) size 7x4
     878layer at (272,203) size 7x4 scrollHeight 12
     879  RenderMathMLBlock (flex) {mo} at (0,4) size 7x4
     880    RenderBlock (anonymous) at (0,0) size 7x4
     881      RenderText {mo} at (0,-9) size 7x21
     882        text run at (0,-9) width 7: "\x{23D0}"
     883layer at (272,207) size 7x4 scrollHeight 12
     884  RenderMathMLBlock (flex) {mo} at (0,8) size 7x4
     885    RenderBlock (anonymous) at (0,0) size 7x4
     886      RenderText {mo} at (0,-9) size 7x21
     887        text run at (0,-9) width 7: "\x{23D0}"
     888layer at (272,211) size 7x4 scrollHeight 12
     889  RenderMathMLBlock (flex) {mo} at (0,12) size 7x4
     890    RenderBlock (anonymous) at (0,0) size 7x4
     891      RenderText {mo} at (0,-9) size 7x21
     892        text run at (0,-9) width 7: "\x{23D0}"
     893layer at (272,215) size 7x4 scrollHeight 12
     894  RenderMathMLBlock (flex) {mo} at (0,16) size 7x4
     895    RenderBlock (anonymous) at (0,0) size 7x4
     896      RenderText {mo} at (0,-9) size 7x21
     897        text run at (0,-9) width 7: "\x{23D0}"
     898layer at (272,219) size 7x4 scrollHeight 12
     899  RenderMathMLBlock (flex) {mo} at (0,20) size 7x4
     900    RenderBlock (anonymous) at (0,0) size 7x4
     901      RenderText {mo} at (0,-9) size 7x21
     902        text run at (0,-9) width 7: "\x{23D0}"
     903layer at (272,223) size 7x4 scrollHeight 12
     904  RenderMathMLBlock (flex) {mo} at (0,24) size 7x4
     905    RenderBlock (anonymous) at (0,0) size 7x4
     906      RenderText {mo} at (0,-9) size 7x21
     907        text run at (0,-9) width 7: "\x{23D0}"
     908layer at (272,227) size 7x4 scrollHeight 12
     909  RenderMathMLBlock (flex) {mo} at (0,28) size 7x4
     910    RenderBlock (anonymous) at (0,0) size 7x4
     911      RenderText {mo} at (0,-9) size 7x21
     912        text run at (0,-9) width 7: "\x{23D0}"
     913layer at (272,231) size 7x4 scrollHeight 12
     914  RenderMathMLBlock (flex) {mo} at (0,32) size 7x4
     915    RenderBlock (anonymous) at (0,0) size 7x4
     916      RenderText {mo} at (0,-9) size 7x21
     917        text run at (0,-9) width 7: "\x{23D0}"
    711918layer at (272,235) size 7x4 scrollHeight 12
    712   RenderMathMLBlock (block) {mo} at (0,4) size 7x4
    713     RenderText {mo} at (0,-9) size 7x21
    714       text run at (0,-9) width 7: "\x{23D0}"
     919  RenderMathMLBlock (flex) {mo} at (0,36) size 7x4
     920    RenderBlock (anonymous) at (0,0) size 7x4
     921      RenderText {mo} at (0,-9) size 7x21
     922        text run at (0,-9) width 7: "\x{23D0}"
    715923layer at (272,239) size 7x4 scrollHeight 12
    716   RenderMathMLBlock (block) {mo} at (0,8) size 7x4
    717     RenderText {mo} at (0,-9) size 7x21
    718       text run at (0,-9) width 7: "\x{23D0}"
     924  RenderMathMLBlock (flex) {mo} at (0,40) size 7x4
     925    RenderBlock (anonymous) at (0,0) size 7x4
     926      RenderText {mo} at (0,-9) size 7x21
     927        text run at (0,-9) width 7: "\x{23D0}"
    719928layer at (272,243) size 7x4 scrollHeight 12
    720   RenderMathMLBlock (block) {mo} at (0,12) size 7x4
    721     RenderText {mo} at (0,-9) size 7x21
    722       text run at (0,-9) width 7: "\x{23D0}"
     929  RenderMathMLBlock (flex) {mo} at (0,44) size 7x4
     930    RenderBlock (anonymous) at (0,0) size 7x4
     931      RenderText {mo} at (0,-9) size 7x21
     932        text run at (0,-9) width 7: "\x{23D0}"
    723933layer at (272,247) size 7x4 scrollHeight 12
    724   RenderMathMLBlock (block) {mo} at (0,16) size 7x4
    725     RenderText {mo} at (0,-9) size 7x21
    726       text run at (0,-9) width 7: "\x{23D0}"
    727 layer at (272,251) size 7x4 scrollHeight 12
    728   RenderMathMLBlock (block) {mo} at (0,20) size 7x4
    729     RenderText {mo} at (0,-9) size 7x21
    730       text run at (0,-9) width 7: "\x{23D0}"
    731 layer at (272,255) size 7x4 scrollHeight 12
    732   RenderMathMLBlock (block) {mo} at (0,24) size 7x4
    733     RenderText {mo} at (0,-9) size 7x21
    734       text run at (0,-9) width 7: "\x{23D0}"
    735 layer at (272,259) size 7x4 scrollHeight 12
    736   RenderMathMLBlock (block) {mo} at (0,28) size 7x4
    737     RenderText {mo} at (0,-9) size 7x21
    738       text run at (0,-9) width 7: "\x{23D0}"
    739 layer at (272,263) size 7x4 scrollHeight 12
    740   RenderMathMLBlock (block) {mo} at (0,32) size 7x4
    741     RenderText {mo} at (0,-9) size 7x21
    742       text run at (0,-9) width 7: "\x{23D0}"
    743 layer at (272,267) size 7x4 scrollHeight 12
    744   RenderMathMLBlock (block) {mo} at (0,36) size 7x4
    745     RenderText {mo} at (0,-9) size 7x21
    746       text run at (0,-9) width 7: "\x{23D0}"
    747 layer at (272,271) size 7x4 scrollHeight 12
    748   RenderMathMLBlock (block) {mo} at (0,40) size 7x4
    749     RenderText {mo} at (0,-9) size 7x21
    750       text run at (0,-9) width 7: "\x{23D0}"
    751 layer at (272,275) size 7x4 scrollHeight 12
    752   RenderMathMLBlock (block) {mo} at (0,44) size 7x4
    753     RenderText {mo} at (0,-9) size 7x21
    754       text run at (0,-9) width 7: "\x{23D0}"
    755 layer at (272,279) size 7x4 scrollHeight 12
    756   RenderMathMLBlock (block) {mo} at (0,48) size 7x4
    757     RenderText {mo} at (0,-9) size 7x21
    758       text run at (0,-9) width 7: "\x{23D0}"
    759 layer at (272,283) size 7x1 scrollHeight 12
    760   RenderMathMLBlock (block) {mo} at (0,52) size 7x1
    761     RenderText {mo} at (0,-9) size 7x21
    762       text run at (0,-9) width 7: "\x{23D0}"
    763 layer at (272,284) size 7x7 scrollHeight 12
    764   RenderMathMLBlock (block) {mo} at (0,53) size 7x7
    765 layer at (335,231) size 7x4 scrollHeight 13
    766   RenderMathMLBlock (block) {mo} at (0,0) size 7x4
     934  RenderMathMLBlock (flex) {mo} at (0,48) size 7x4
     935    RenderBlock (anonymous) at (0,0) size 7x4
     936      RenderText {mo} at (0,-9) size 7x21
     937        text run at (0,-9) width 7: "\x{23D0}"
     938layer at (272,251) size 7x1 scrollHeight 12
     939  RenderMathMLBlock (flex) {mo} at (0,52) size 7x1
     940    RenderBlock (anonymous) at (0,0) size 7x1
     941      RenderText {mo} at (0,-9) size 7x21
     942        text run at (0,-9) width 7: "\x{23D0}"
     943layer at (272,252) size 7x7 scrollHeight 12
     944  RenderMathMLBlock (flex) {mo} at (0,53) size 7x7
     945    RenderBlock (anonymous) at (0,0) size 7x7
     946layer at (335,199) size 7x4 scrollHeight 13
     947  RenderMathMLBlock (flex) {mo} at (0,0) size 7x4
     948    RenderBlock (anonymous) at (0,0) size 7x4
     949layer at (335,203) size 7x4 scrollHeight 12
     950  RenderMathMLBlock (flex) {mo} at (0,4) size 7x4
     951    RenderBlock (anonymous) at (0,0) size 7x4
     952      RenderText {mo} at (0,-9) size 7x21
     953        text run at (0,-9) width 7: "\x{23D0}"
     954layer at (335,207) size 7x4 scrollHeight 12
     955  RenderMathMLBlock (flex) {mo} at (0,8) size 7x4
     956    RenderBlock (anonymous) at (0,0) size 7x4
     957      RenderText {mo} at (0,-9) size 7x21
     958        text run at (0,-9) width 7: "\x{23D0}"
     959layer at (335,211) size 7x4 scrollHeight 12
     960  RenderMathMLBlock (flex) {mo} at (0,12) size 7x4
     961    RenderBlock (anonymous) at (0,0) size 7x4
     962      RenderText {mo} at (0,-9) size 7x21
     963        text run at (0,-9) width 7: "\x{23D0}"
     964layer at (335,215) size 7x4 scrollHeight 12
     965  RenderMathMLBlock (flex) {mo} at (0,16) size 7x4
     966    RenderBlock (anonymous) at (0,0) size 7x4
     967      RenderText {mo} at (0,-9) size 7x21
     968        text run at (0,-9) width 7: "\x{23D0}"
     969layer at (335,219) size 7x4 scrollHeight 12
     970  RenderMathMLBlock (flex) {mo} at (0,20) size 7x4
     971    RenderBlock (anonymous) at (0,0) size 7x4
     972      RenderText {mo} at (0,-9) size 7x21
     973        text run at (0,-9) width 7: "\x{23D0}"
     974layer at (335,223) size 7x4 scrollHeight 12
     975  RenderMathMLBlock (flex) {mo} at (0,24) size 7x4
     976    RenderBlock (anonymous) at (0,0) size 7x4
     977      RenderText {mo} at (0,-9) size 7x21
     978        text run at (0,-9) width 7: "\x{23D0}"
     979layer at (335,227) size 7x4 scrollHeight 12
     980  RenderMathMLBlock (flex) {mo} at (0,28) size 7x4
     981    RenderBlock (anonymous) at (0,0) size 7x4
     982      RenderText {mo} at (0,-9) size 7x21
     983        text run at (0,-9) width 7: "\x{23D0}"
     984layer at (335,231) size 7x4 scrollHeight 12
     985  RenderMathMLBlock (flex) {mo} at (0,32) size 7x4
     986    RenderBlock (anonymous) at (0,0) size 7x4
     987      RenderText {mo} at (0,-9) size 7x21
     988        text run at (0,-9) width 7: "\x{23D0}"
    767989layer at (335,235) size 7x4 scrollHeight 12
    768   RenderMathMLBlock (block) {mo} at (0,4) size 7x4
    769     RenderText {mo} at (0,-9) size 7x21
    770       text run at (0,-9) width 7: "\x{23D0}"
     990  RenderMathMLBlock (flex) {mo} at (0,36) size 7x4
     991    RenderBlock (anonymous) at (0,0) size 7x4
     992      RenderText {mo} at (0,-9) size 7x21
     993        text run at (0,-9) width 7: "\x{23D0}"
    771994layer at (335,239) size 7x4 scrollHeight 12
    772   RenderMathMLBlock (block) {mo} at (0,8) size 7x4
    773     RenderText {mo} at (0,-9) size 7x21
    774       text run at (0,-9) width 7: "\x{23D0}"
     995  RenderMathMLBlock (flex) {mo} at (0,40) size 7x4
     996    RenderBlock (anonymous) at (0,0) size 7x4
     997      RenderText {mo} at (0,-9) size 7x21
     998        text run at (0,-9) width 7: "\x{23D0}"
    775999layer at (335,243) size 7x4 scrollHeight 12
    776   RenderMathMLBlock (block) {mo} at (0,12) size 7x4
    777     RenderText {mo} at (0,-9) size 7x21
    778       text run at (0,-9) width 7: "\x{23D0}"
     1000  RenderMathMLBlock (flex) {mo} at (0,44) size 7x4
     1001    RenderBlock (anonymous) at (0,0) size 7x4
     1002      RenderText {mo} at (0,-9) size 7x21
     1003        text run at (0,-9) width 7: "\x{23D0}"
    7791004layer at (335,247) size 7x4 scrollHeight 12
    780   RenderMathMLBlock (block) {mo} at (0,16) size 7x4
    781     RenderText {mo} at (0,-9) size 7x21
    782       text run at (0,-9) width 7: "\x{23D0}"
    783 layer at (335,251) size 7x4 scrollHeight 12
    784   RenderMathMLBlock (block) {mo} at (0,20) size 7x4
    785     RenderText {mo} at (0,-9) size 7x21
    786       text run at (0,-9) width 7: "\x{23D0}"
    787 layer at (335,255) size 7x4 scrollHeight 12
    788   RenderMathMLBlock (block) {mo} at (0,24) size 7x4
    789     RenderText {mo} at (0,-9) size 7x21
    790       text run at (0,-9) width 7: "\x{23D0}"
    791 layer at (335,259) size 7x4 scrollHeight 12
    792   RenderMathMLBlock (block) {mo} at (0,28) size 7x4
    793     RenderText {mo} at (0,-9) size 7x21
    794       text run at (0,-9) width 7: "\x{23D0}"
    795 layer at (335,263) size 7x4 scrollHeight 12
    796   RenderMathMLBlock (block) {mo} at (0,32) size 7x4
    797     RenderText {mo} at (0,-9) size 7x21
    798       text run at (0,-9) width 7: "\x{23D0}"
    799 layer at (335,267) size 7x4 scrollHeight 12
    800   RenderMathMLBlock (block) {mo} at (0,36) size 7x4
    801     RenderText {mo} at (0,-9) size 7x21
    802       text run at (0,-9) width 7: "\x{23D0}"
    803 layer at (335,271) size 7x4 scrollHeight 12
    804   RenderMathMLBlock (block) {mo} at (0,40) size 7x4
    805     RenderText {mo} at (0,-9) size 7x21
    806       text run at (0,-9) width 7: "\x{23D0}"
    807 layer at (335,275) size 7x4 scrollHeight 12
    808   RenderMathMLBlock (block) {mo} at (0,44) size 7x4
    809     RenderText {mo} at (0,-9) size 7x21
    810       text run at (0,-9) width 7: "\x{23D0}"
    811 layer at (335,279) size 7x4 scrollHeight 12
    812   RenderMathMLBlock (block) {mo} at (0,48) size 7x4
    813     RenderText {mo} at (0,-9) size 7x21
    814       text run at (0,-9) width 7: "\x{23D0}"
    815 layer at (335,283) size 7x1 scrollHeight 12
    816   RenderMathMLBlock (block) {mo} at (0,52) size 7x1
    817     RenderText {mo} at (0,-9) size 7x21
    818       text run at (0,-9) width 7: "\x{23D0}"
    819 layer at (335,284) size 7x7 scrollHeight 12
    820   RenderMathMLBlock (block) {mo} at (0,53) size 7x7
    821 layer at (349,231) size 10x10 scrollHeight 18
    822   RenderMathMLBlock (block) {mo} at (0,0) size 10x10
    823 layer at (349,241) size 10x10 scrollHeight 17
    824   RenderMathMLBlock (block) {mo} at (0,10) size 10x10
    825     RenderText {mo} at (0,-4) size 10x21
    826       text run at (0,-4) width 10: "\x{23AE}"
    827 layer at (349,251) size 10x10 scrollHeight 17
    828   RenderMathMLBlock (block) {mo} at (0,20) size 10x10
    829     RenderText {mo} at (0,-4) size 10x21
    830       text run at (0,-4) width 10: "\x{23AE}"
    831 layer at (349,261) size 10x10 scrollHeight 17
    832   RenderMathMLBlock (block) {mo} at (0,30) size 10x10
    833     RenderText {mo} at (0,-4) size 10x21
    834       text run at (0,-4) width 10: "\x{23AE}"
    835 layer at (349,271) size 10x7 scrollHeight 17
    836   RenderMathMLBlock (block) {mo} at (0,40) size 10x7
    837     RenderText {mo} at (0,-4) size 10x21
    838       text run at (0,-4) width 10: "\x{23AE}"
    839 layer at (349,278) size 10x15 scrollHeight 17
    840   RenderMathMLBlock (block) {mo} at (0,47) size 10x15
    841 layer at (57,345) size 7x10 scrollHeight 18
    842   RenderMathMLBlock (block) {mo} at (0,0) size 7x10
    843 layer at (57,355) size 7x10 scrollHeight 17
    844   RenderMathMLBlock (block) {mo} at (0,10) size 7x10
    845     RenderText {mo} at (0,-4) size 7x21
    846       text run at (0,-4) width 7: "\x{23AA}"
    847 layer at (57,365) size 7x10 scrollHeight 17
    848   RenderMathMLBlock (block) {mo} at (0,20) size 7x10
    849     RenderText {mo} at (0,-4) size 7x21
    850       text run at (0,-4) width 7: "\x{23AA}"
    851 layer at (57,375) size 7x10 scrollHeight 17
    852   RenderMathMLBlock (block) {mo} at (0,30) size 7x10
    853     RenderText {mo} at (0,-4) size 7x21
    854       text run at (0,-4) width 7: "\x{23AA}"
    855 layer at (57,385) size 7x10 scrollHeight 17
    856   RenderMathMLBlock (block) {mo} at (0,40) size 7x10
    857     RenderText {mo} at (0,-4) size 7x21
    858       text run at (0,-4) width 7: "\x{23AA}"
    859 layer at (57,395) size 7x10 scrollHeight 17
    860   RenderMathMLBlock (block) {mo} at (0,50) size 7x10
    861     RenderText {mo} at (0,-4) size 7x21
    862       text run at (0,-4) width 7: "\x{23AA}"
    863 layer at (57,405) size 7x7 scrollHeight 17
    864   RenderMathMLBlock (block) {mo} at (0,60) size 7x7
    865     RenderText {mo} at (0,-4) size 7x21
    866       text run at (0,-4) width 7: "\x{23AA}"
    867 layer at (57,412) size 7x10 scrollHeight 17
    868   RenderMathMLBlock (block) {mo} at (0,67) size 7x10
    869 layer at (57,422) size 7x10 scrollHeight 17
    870   RenderMathMLBlock (block) {mo} at (0,77) size 7x10
    871     RenderText {mo} at (0,-4) size 7x21
    872       text run at (0,-4) width 7: "\x{23AA}"
    873 layer at (57,432) size 7x10 scrollHeight 17
    874   RenderMathMLBlock (block) {mo} at (0,87) size 7x10
    875     RenderText {mo} at (0,-4) size 7x21
    876       text run at (0,-4) width 7: "\x{23AA}"
    877 layer at (57,442) size 7x10 scrollHeight 17
    878   RenderMathMLBlock (block) {mo} at (0,97) size 7x10
    879     RenderText {mo} at (0,-4) size 7x21
    880       text run at (0,-4) width 7: "\x{23AA}"
    881 layer at (57,452) size 7x10 scrollHeight 17
    882   RenderMathMLBlock (block) {mo} at (0,107) size 7x10
    883     RenderText {mo} at (0,-4) size 7x21
    884       text run at (0,-4) width 7: "\x{23AA}"
    885 layer at (57,462) size 7x10 scrollHeight 17
    886   RenderMathMLBlock (block) {mo} at (0,117) size 7x10
    887     RenderText {mo} at (0,-4) size 7x21
    888       text run at (0,-4) width 7: "\x{23AA}"
    889 layer at (57,472) size 7x7 scrollHeight 17
    890   RenderMathMLBlock (block) {mo} at (0,127) size 7x7
    891     RenderText {mo} at (0,-4) size 7x21
    892       text run at (0,-4) width 7: "\x{23AA}"
    893 layer at (57,479) size 7x15 scrollHeight 17
    894   RenderMathMLBlock (block) {mo} at (0,134) size 7x15
    895 layer at (120,345) size 7x10 scrollHeight 18
    896   RenderMathMLBlock (block) {mo} at (0,0) size 7x10
    897 layer at (120,355) size 7x10 scrollHeight 17
    898   RenderMathMLBlock (block) {mo} at (0,10) size 7x10
    899     RenderText {mo} at (0,-4) size 7x21
    900       text run at (0,-4) width 7: "\x{23AA}"
    901 layer at (120,365) size 7x10 scrollHeight 17
    902   RenderMathMLBlock (block) {mo} at (0,20) size 7x10
    903     RenderText {mo} at (0,-4) size 7x21
    904       text run at (0,-4) width 7: "\x{23AA}"
    905 layer at (120,375) size 7x10 scrollHeight 17
    906   RenderMathMLBlock (block) {mo} at (0,30) size 7x10
    907     RenderText {mo} at (0,-4) size 7x21
    908       text run at (0,-4) width 7: "\x{23AA}"
    909 layer at (120,385) size 7x10 scrollHeight 17
    910   RenderMathMLBlock (block) {mo} at (0,40) size 7x10
    911     RenderText {mo} at (0,-4) size 7x21
    912       text run at (0,-4) width 7: "\x{23AA}"
    913 layer at (120,395) size 7x10 scrollHeight 17
    914   RenderMathMLBlock (block) {mo} at (0,50) size 7x10
    915     RenderText {mo} at (0,-4) size 7x21
    916       text run at (0,-4) width 7: "\x{23AA}"
    917 layer at (120,405) size 7x7 scrollHeight 17
    918   RenderMathMLBlock (block) {mo} at (0,60) size 7x7
    919     RenderText {mo} at (0,-4) size 7x21
    920       text run at (0,-4) width 7: "\x{23AA}"
    921 layer at (120,412) size 7x10 scrollHeight 17
    922   RenderMathMLBlock (block) {mo} at (0,67) size 7x10
    923 layer at (120,422) size 7x10 scrollHeight 17
    924   RenderMathMLBlock (block) {mo} at (0,77) size 7x10
    925     RenderText {mo} at (0,-4) size 7x21
    926       text run at (0,-4) width 7: "\x{23AA}"
    927 layer at (120,432) size 7x10 scrollHeight 17
    928   RenderMathMLBlock (block) {mo} at (0,87) size 7x10
    929     RenderText {mo} at (0,-4) size 7x21
    930       text run at (0,-4) width 7: "\x{23AA}"
    931 layer at (120,442) size 7x10 scrollHeight 17
    932   RenderMathMLBlock (block) {mo} at (0,97) size 7x10
    933     RenderText {mo} at (0,-4) size 7x21
    934       text run at (0,-4) width 7: "\x{23AA}"
    935 layer at (120,452) size 7x10 scrollHeight 17
    936   RenderMathMLBlock (block) {mo} at (0,107) size 7x10
    937     RenderText {mo} at (0,-4) size 7x21
    938       text run at (0,-4) width 7: "\x{23AA}"
    939 layer at (120,462) size 7x10 scrollHeight 17
    940   RenderMathMLBlock (block) {mo} at (0,117) size 7x10
    941     RenderText {mo} at (0,-4) size 7x21
    942       text run at (0,-4) width 7: "\x{23AA}"
    943 layer at (120,472) size 7x7 scrollHeight 17
    944   RenderMathMLBlock (block) {mo} at (0,127) size 7x7
    945     RenderText {mo} at (0,-4) size 7x21
    946       text run at (0,-4) width 7: "\x{23AA}"
    947 layer at (120,479) size 7x15 scrollHeight 17
    948   RenderMathMLBlock (block) {mo} at (0,134) size 7x15
    949 layer at (134,345) size 5x10 scrollHeight 18
    950   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    951 layer at (134,355) size 5x10 scrollHeight 17
    952   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    953     RenderText {mo} at (0,-4) size 5x21
    954       text run at (0,-4) width 5: "\x{23A2}"
    955 layer at (134,365) size 5x10 scrollHeight 17
    956   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    957     RenderText {mo} at (0,-4) size 5x21
    958       text run at (0,-4) width 5: "\x{23A2}"
    959 layer at (134,375) size 5x10 scrollHeight 17
    960   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    961     RenderText {mo} at (0,-4) size 5x21
    962       text run at (0,-4) width 5: "\x{23A2}"
    963 layer at (134,385) size 5x10 scrollHeight 17
    964   RenderMathMLBlock (block) {mo} at (0,40) size 5x10
    965     RenderText {mo} at (0,-4) size 5x21
    966       text run at (0,-4) width 5: "\x{23A2}"
    967 layer at (134,395) size 5x10 scrollHeight 17
    968   RenderMathMLBlock (block) {mo} at (0,50) size 5x10
    969     RenderText {mo} at (0,-4) size 5x21
    970       text run at (0,-4) width 5: "\x{23A2}"
    971 layer at (134,405) size 5x10 scrollHeight 17
    972   RenderMathMLBlock (block) {mo} at (0,60) size 5x10
    973     RenderText {mo} at (0,-4) size 5x21
    974       text run at (0,-4) width 5: "\x{23A2}"
    975 layer at (134,415) size 5x10 scrollHeight 17
    976   RenderMathMLBlock (block) {mo} at (0,70) size 5x10
    977     RenderText {mo} at (0,-4) size 5x21
    978       text run at (0,-4) width 5: "\x{23A2}"
    979 layer at (134,425) size 5x10 scrollHeight 17
    980   RenderMathMLBlock (block) {mo} at (0,80) size 5x10
    981     RenderText {mo} at (0,-4) size 5x21
    982       text run at (0,-4) width 5: "\x{23A2}"
    983 layer at (134,435) size 5x10 scrollHeight 17
    984   RenderMathMLBlock (block) {mo} at (0,90) size 5x10
    985     RenderText {mo} at (0,-4) size 5x21
    986       text run at (0,-4) width 5: "\x{23A2}"
    987 layer at (134,445) size 5x10 scrollHeight 17
    988   RenderMathMLBlock (block) {mo} at (0,100) size 5x10
    989     RenderText {mo} at (0,-4) size 5x21
    990       text run at (0,-4) width 5: "\x{23A2}"
    991 layer at (134,455) size 5x10 scrollHeight 17
    992   RenderMathMLBlock (block) {mo} at (0,110) size 5x10
    993     RenderText {mo} at (0,-4) size 5x21
    994       text run at (0,-4) width 5: "\x{23A2}"
    995 layer at (134,465) size 5x10 scrollHeight 17
    996   RenderMathMLBlock (block) {mo} at (0,120) size 5x10
    997     RenderText {mo} at (0,-4) size 5x21
    998       text run at (0,-4) width 5: "\x{23A2}"
    999 layer at (134,475) size 5x4 scrollHeight 17
    1000   RenderMathMLBlock (block) {mo} at (0,130) size 5x4
    1001     RenderText {mo} at (0,-4) size 5x21
    1002       text run at (0,-4) width 5: "\x{23A2}"
    1003 layer at (134,479) size 5x15 scrollHeight 17
    1004   RenderMathMLBlock (block) {mo} at (0,134) size 5x15
    1005 layer at (195,345) size 5x10 scrollHeight 18
    1006   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    1007 layer at (195,355) size 5x10 scrollHeight 17
    1008   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    1009     RenderText {mo} at (0,-4) size 5x21
    1010       text run at (0,-4) width 5: "\x{23A5}"
    1011 layer at (195,365) size 5x10 scrollHeight 17
    1012   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    1013     RenderText {mo} at (0,-4) size 5x21
    1014       text run at (0,-4) width 5: "\x{23A5}"
    1015 layer at (195,375) size 5x10 scrollHeight 17
    1016   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    1017     RenderText {mo} at (0,-4) size 5x21
    1018       text run at (0,-4) width 5: "\x{23A5}"
    1019 layer at (195,385) size 5x10 scrollHeight 17
    1020   RenderMathMLBlock (block) {mo} at (0,40) size 5x10
    1021     RenderText {mo} at (0,-4) size 5x21
    1022       text run at (0,-4) width 5: "\x{23A5}"
    1023 layer at (195,395) size 5x10 scrollHeight 17
    1024   RenderMathMLBlock (block) {mo} at (0,50) size 5x10
    1025     RenderText {mo} at (0,-4) size 5x21
    1026       text run at (0,-4) width 5: "\x{23A5}"
    1027 layer at (195,405) size 5x10 scrollHeight 17
    1028   RenderMathMLBlock (block) {mo} at (0,60) size 5x10
    1029     RenderText {mo} at (0,-4) size 5x21
    1030       text run at (0,-4) width 5: "\x{23A5}"
    1031 layer at (195,415) size 5x10 scrollHeight 17
    1032   RenderMathMLBlock (block) {mo} at (0,70) size 5x10
    1033     RenderText {mo} at (0,-4) size 5x21
    1034       text run at (0,-4) width 5: "\x{23A5}"
    1035 layer at (195,425) size 5x10 scrollHeight 17
    1036   RenderMathMLBlock (block) {mo} at (0,80) size 5x10
    1037     RenderText {mo} at (0,-4) size 5x21
    1038       text run at (0,-4) width 5: "\x{23A5}"
    1039 layer at (195,435) size 5x10 scrollHeight 17
    1040   RenderMathMLBlock (block) {mo} at (0,90) size 5x10
    1041     RenderText {mo} at (0,-4) size 5x21
    1042       text run at (0,-4) width 5: "\x{23A5}"
    1043 layer at (195,445) size 5x10 scrollHeight 17
    1044   RenderMathMLBlock (block) {mo} at (0,100) size 5x10
    1045     RenderText {mo} at (0,-4) size 5x21
    1046       text run at (0,-4) width 5: "\x{23A5}"
    1047 layer at (195,455) size 5x10 scrollHeight 17
    1048   RenderMathMLBlock (block) {mo} at (0,110) size 5x10
    1049     RenderText {mo} at (0,-4) size 5x21
    1050       text run at (0,-4) width 5: "\x{23A5}"
    1051 layer at (195,465) size 5x10 scrollHeight 17
    1052   RenderMathMLBlock (block) {mo} at (0,120) size 5x10
    1053     RenderText {mo} at (0,-4) size 5x21
    1054       text run at (0,-4) width 5: "\x{23A5}"
    1055 layer at (195,475) size 5x4 scrollHeight 17
    1056   RenderMathMLBlock (block) {mo} at (0,130) size 5x4
    1057     RenderText {mo} at (0,-4) size 5x21
    1058       text run at (0,-4) width 5: "\x{23A5}"
    1059 layer at (195,479) size 5x15 scrollHeight 17
    1060   RenderMathMLBlock (block) {mo} at (0,134) size 5x15
    1061 layer at (207,345) size 5x10 scrollHeight 18
    1062   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    1063 layer at (207,355) size 5x10 scrollHeight 17
    1064   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    1065     RenderText {mo} at (0,-4) size 5x21
    1066       text run at (0,-4) width 5: "\x{239C}"
    1067 layer at (207,365) size 5x10 scrollHeight 17
    1068   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    1069     RenderText {mo} at (0,-4) size 5x21
    1070       text run at (0,-4) width 5: "\x{239C}"
    1071 layer at (207,375) size 5x10 scrollHeight 17
    1072   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    1073     RenderText {mo} at (0,-4) size 5x21
    1074       text run at (0,-4) width 5: "\x{239C}"
    1075 layer at (207,385) size 5x10 scrollHeight 17
    1076   RenderMathMLBlock (block) {mo} at (0,40) size 5x10
    1077     RenderText {mo} at (0,-4) size 5x21
    1078       text run at (0,-4) width 5: "\x{239C}"
    1079 layer at (207,395) size 5x10 scrollHeight 17
    1080   RenderMathMLBlock (block) {mo} at (0,50) size 5x10
    1081     RenderText {mo} at (0,-4) size 5x21
    1082       text run at (0,-4) width 5: "\x{239C}"
    1083 layer at (207,405) size 5x10 scrollHeight 17
    1084   RenderMathMLBlock (block) {mo} at (0,60) size 5x10
    1085     RenderText {mo} at (0,-4) size 5x21
    1086       text run at (0,-4) width 5: "\x{239C}"
    1087 layer at (207,415) size 5x10 scrollHeight 17
    1088   RenderMathMLBlock (block) {mo} at (0,70) size 5x10
    1089     RenderText {mo} at (0,-4) size 5x21
    1090       text run at (0,-4) width 5: "\x{239C}"
    1091 layer at (207,425) size 5x10 scrollHeight 17
    1092   RenderMathMLBlock (block) {mo} at (0,80) size 5x10
    1093     RenderText {mo} at (0,-4) size 5x21
    1094       text run at (0,-4) width 5: "\x{239C}"
    1095 layer at (207,435) size 5x10 scrollHeight 17
    1096   RenderMathMLBlock (block) {mo} at (0,90) size 5x10
    1097     RenderText {mo} at (0,-4) size 5x21
    1098       text run at (0,-4) width 5: "\x{239C}"
    1099 layer at (207,445) size 5x10 scrollHeight 17
    1100   RenderMathMLBlock (block) {mo} at (0,100) size 5x10
    1101     RenderText {mo} at (0,-4) size 5x21
    1102       text run at (0,-4) width 5: "\x{239C}"
    1103 layer at (207,455) size 5x10 scrollHeight 17
    1104   RenderMathMLBlock (block) {mo} at (0,110) size 5x10
    1105     RenderText {mo} at (0,-4) size 5x21
    1106       text run at (0,-4) width 5: "\x{239C}"
    1107 layer at (207,465) size 5x10 scrollHeight 17
    1108   RenderMathMLBlock (block) {mo} at (0,120) size 5x10
    1109     RenderText {mo} at (0,-4) size 5x21
    1110       text run at (0,-4) width 5: "\x{239C}"
    1111 layer at (207,475) size 5x4 scrollHeight 17
    1112   RenderMathMLBlock (block) {mo} at (0,130) size 5x4
    1113     RenderText {mo} at (0,-4) size 5x21
    1114       text run at (0,-4) width 5: "\x{239C}"
    1115 layer at (207,479) size 5x14 scrollHeight 17
    1116   RenderMathMLBlock (block) {mo} at (0,134) size 5x14
    1117 layer at (268,345) size 5x10 scrollHeight 18
    1118   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    1119 layer at (268,355) size 5x10 scrollHeight 17
    1120   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    1121     RenderText {mo} at (0,-4) size 5x21
    1122       text run at (0,-4) width 5: "\x{239F}"
    1123 layer at (268,365) size 5x10 scrollHeight 17
    1124   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    1125     RenderText {mo} at (0,-4) size 5x21
    1126       text run at (0,-4) width 5: "\x{239F}"
    1127 layer at (268,375) size 5x10 scrollHeight 17
    1128   RenderMathMLBlock (block) {mo} at (0,30) size 5x10
    1129     RenderText {mo} at (0,-4) size 5x21
    1130       text run at (0,-4) width 5: "\x{239F}"
    1131 layer at (268,385) size 5x10 scrollHeight 17
    1132   RenderMathMLBlock (block) {mo} at (0,40) size 5x10
    1133     RenderText {mo} at (0,-4) size 5x21
    1134       text run at (0,-4) width 5: "\x{239F}"
    1135 layer at (268,395) size 5x10 scrollHeight 17
    1136   RenderMathMLBlock (block) {mo} at (0,50) size 5x10
    1137     RenderText {mo} at (0,-4) size 5x21
    1138       text run at (0,-4) width 5: "\x{239F}"
    1139 layer at (268,405) size 5x10 scrollHeight 17
    1140   RenderMathMLBlock (block) {mo} at (0,60) size 5x10
    1141     RenderText {mo} at (0,-4) size 5x21
    1142       text run at (0,-4) width 5: "\x{239F}"
    1143 layer at (268,415) size 5x10 scrollHeight 17
    1144   RenderMathMLBlock (block) {mo} at (0,70) size 5x10
    1145     RenderText {mo} at (0,-4) size 5x21
    1146       text run at (0,-4) width 5: "\x{239F}"
    1147 layer at (268,425) size 5x10 scrollHeight 17
    1148   RenderMathMLBlock (block) {mo} at (0,80) size 5x10
    1149     RenderText {mo} at (0,-4) size 5x21
    1150       text run at (0,-4) width 5: "\x{239F}"
    1151 layer at (268,435) size 5x10 scrollHeight 17
    1152   RenderMathMLBlock (block) {mo} at (0,90) size 5x10
    1153     RenderText {mo} at (0,-4) size 5x21
    1154       text run at (0,-4) width 5: "\x{239F}"
    1155 layer at (268,445) size 5x10 scrollHeight 17
    1156   RenderMathMLBlock (block) {mo} at (0,100) size 5x10
    1157     RenderText {mo} at (0,-4) size 5x21
    1158       text run at (0,-4) width 5: "\x{239F}"
    1159 layer at (268,455) size 5x10 scrollHeight 17
    1160   RenderMathMLBlock (block) {mo} at (0,110) size 5x10
    1161     RenderText {mo} at (0,-4) size 5x21
    1162       text run at (0,-4) width 5: "\x{239F}"
    1163 layer at (268,465) size 5x10 scrollHeight 17
    1164   RenderMathMLBlock (block) {mo} at (0,120) size 5x10
    1165     RenderText {mo} at (0,-4) size 5x21
    1166       text run at (0,-4) width 5: "\x{239F}"
    1167 layer at (268,475) size 5x4 scrollHeight 17
    1168   RenderMathMLBlock (block) {mo} at (0,130) size 5x4
    1169     RenderText {mo} at (0,-4) size 5x21
    1170       text run at (0,-4) width 5: "\x{239F}"
    1171 layer at (268,479) size 5x14 scrollHeight 17
    1172   RenderMathMLBlock (block) {mo} at (0,134) size 5x14
    1173 layer at (280,345) size 7x4 scrollHeight 13
    1174   RenderMathMLBlock (block) {mo} at (0,0) size 7x4
     1005  RenderMathMLBlock (flex) {mo} at (0,48) size 7x4
     1006    RenderBlock (anonymous) at (0,0) size 7x4
     1007      RenderText {mo} at (0,-9) size 7x21
     1008        text run at (0,-9) width 7: "\x{23D0}"
     1009layer at (335,251) size 7x1 scrollHeight 12
     1010  RenderMathMLBlock (flex) {mo} at (0,52) size 7x1
     1011    RenderBlock (anonymous) at (0,0) size 7x1
     1012      RenderText {mo} at (0,-9) size 7x21
     1013        text run at (0,-9) width 7: "\x{23D0}"
     1014layer at (335,252) size 7x7 scrollHeight 12
     1015  RenderMathMLBlock (flex) {mo} at (0,53) size 7x7
     1016    RenderBlock (anonymous) at (0,0) size 7x7
     1017layer at (349,199) size 10x10 scrollHeight 18
     1018  RenderMathMLBlock (flex) {mo} at (0,0) size 10x10
     1019    RenderBlock (anonymous) at (0,0) size 10x10
     1020layer at (349,209) size 10x10 scrollHeight 17
     1021  RenderMathMLBlock (flex) {mo} at (0,10) size 10x10
     1022    RenderBlock (anonymous) at (0,0) size 10x10
     1023      RenderText {mo} at (0,-4) size 10x21
     1024        text run at (0,-4) width 10: "\x{23AE}"
     1025layer at (349,219) size 10x10 scrollHeight 17
     1026  RenderMathMLBlock (flex) {mo} at (0,20) size 10x10
     1027    RenderBlock (anonymous) at (0,0) size 10x10
     1028      RenderText {mo} at (0,-4) size 10x21
     1029        text run at (0,-4) width 10: "\x{23AE}"
     1030layer at (349,229) size 10x10 scrollHeight 17
     1031  RenderMathMLBlock (flex) {mo} at (0,30) size 10x10
     1032    RenderBlock (anonymous) at (0,0) size 10x10
     1033      RenderText {mo} at (0,-4) size 10x21
     1034        text run at (0,-4) width 10: "\x{23AE}"
     1035layer at (349,239) size 10x7 scrollHeight 17
     1036  RenderMathMLBlock (flex) {mo} at (0,40) size 10x7
     1037    RenderBlock (anonymous) at (0,0) size 10x7
     1038      RenderText {mo} at (0,-4) size 10x21
     1039        text run at (0,-4) width 10: "\x{23AE}"
     1040layer at (349,246) size 10x15 scrollHeight 17
     1041  RenderMathMLBlock (flex) {mo} at (0,47) size 10x15
     1042    RenderBlock (anonymous) at (0,0) size 10x15
     1043layer at (57,277) size 7x10 scrollHeight 18
     1044  RenderMathMLBlock (flex) {mo} at (0,0) size 7x10
     1045    RenderBlock (anonymous) at (0,0) size 7x10
     1046layer at (57,287) size 7x10 scrollHeight 17
     1047  RenderMathMLBlock (flex) {mo} at (0,10) size 7x10
     1048    RenderBlock (anonymous) at (0,0) size 7x10
     1049      RenderText {mo} at (0,-4) size 7x21
     1050        text run at (0,-4) width 7: "\x{23AA}"
     1051layer at (57,297) size 7x10 scrollHeight 17
     1052  RenderMathMLBlock (flex) {mo} at (0,20) size 7x10
     1053    RenderBlock (anonymous) at (0,0) size 7x10
     1054      RenderText {mo} at (0,-4) size 7x21
     1055        text run at (0,-4) width 7: "\x{23AA}"
     1056layer at (57,307) size 7x10 scrollHeight 17
     1057  RenderMathMLBlock (flex) {mo} at (0,30) size 7x10
     1058    RenderBlock (anonymous) at (0,0) size 7x10
     1059      RenderText {mo} at (0,-4) size 7x21
     1060        text run at (0,-4) width 7: "\x{23AA}"
     1061layer at (57,317) size 7x10 scrollHeight 17
     1062  RenderMathMLBlock (flex) {mo} at (0,40) size 7x10
     1063    RenderBlock (anonymous) at (0,0) size 7x10
     1064      RenderText {mo} at (0,-4) size 7x21
     1065        text run at (0,-4) width 7: "\x{23AA}"
     1066layer at (57,327) size 7x10 scrollHeight 17
     1067  RenderMathMLBlock (flex) {mo} at (0,50) size 7x10
     1068    RenderBlock (anonymous) at (0,0) size 7x10
     1069      RenderText {mo} at (0,-4) size 7x21
     1070        text run at (0,-4) width 7: "\x{23AA}"
     1071layer at (57,337) size 7x7 scrollHeight 17
     1072  RenderMathMLBlock (flex) {mo} at (0,60) size 7x7
     1073    RenderBlock (anonymous) at (0,0) size 7x7
     1074      RenderText {mo} at (0,-4) size 7x21
     1075        text run at (0,-4) width 7: "\x{23AA}"
     1076layer at (57,344) size 7x10 scrollHeight 17
     1077  RenderMathMLBlock (flex) {mo} at (0,67) size 7x10
     1078    RenderBlock (anonymous) at (0,0) size 7x10
     1079layer at (57,354) size 7x10 scrollHeight 17
     1080  RenderMathMLBlock (flex) {mo} at (0,77) size 7x10
     1081    RenderBlock (anonymous) at (0,0) size 7x10
     1082      RenderText {mo} at (0,-4) size 7x21
     1083        text run at (0,-4) width 7: "\x{23AA}"
     1084layer at (57,364) size 7x10 scrollHeight 17
     1085  RenderMathMLBlock (flex) {mo} at (0,87) size 7x10
     1086    RenderBlock (anonymous) at (0,0) size 7x10
     1087      RenderText {mo} at (0,-4) size 7x21
     1088        text run at (0,-4) width 7: "\x{23AA}"
     1089layer at (57,374) size 7x10 scrollHeight 17
     1090  RenderMathMLBlock (flex) {mo} at (0,97) size 7x10
     1091    RenderBlock (anonymous) at (0,0) size 7x10
     1092      RenderText {mo} at (0,-4) size 7x21
     1093        text run at (0,-4) width 7: "\x{23AA}"
     1094layer at (57,384) size 7x10 scrollHeight 17
     1095  RenderMathMLBlock (flex) {mo} at (0,107) size 7x10
     1096    RenderBlock (anonymous) at (0,0) size 7x10
     1097      RenderText {mo} at (0,-4) size 7x21
     1098        text run at (0,-4) width 7: "\x{23AA}"
     1099layer at (57,394) size 7x10 scrollHeight 17
     1100  RenderMathMLBlock (flex) {mo} at (0,117) size 7x10
     1101    RenderBlock (anonymous) at (0,0) size 7x10
     1102      RenderText {mo} at (0,-4) size 7x21
     1103        text run at (0,-4) width 7: "\x{23AA}"
     1104layer at (57,404) size 7x7 scrollHeight 17
     1105  RenderMathMLBlock (flex) {mo} at (0,127) size 7x7
     1106    RenderBlock (anonymous) at (0,0) size 7x7
     1107      RenderText {mo} at (0,-4) size 7x21
     1108        text run at (0,-4) width 7: "\x{23AA}"
     1109layer at (57,411) size 7x15 scrollHeight 17
     1110  RenderMathMLBlock (flex) {mo} at (0,134) size 7x15
     1111    RenderBlock (anonymous) at (0,0) size 7x15
     1112layer at (120,277) size 7x10 scrollHeight 18
     1113  RenderMathMLBlock (flex) {mo} at (0,0) size 7x10
     1114    RenderBlock (anonymous) at (0,0) size 7x10
     1115layer at (120,287) size 7x10 scrollHeight 17
     1116  RenderMathMLBlock (flex) {mo} at (0,10) size 7x10
     1117    RenderBlock (anonymous) at (0,0) size 7x10
     1118      RenderText {mo} at (0,-4) size 7x21
     1119        text run at (0,-4) width 7: "\x{23AA}"
     1120layer at (120,297) size 7x10 scrollHeight 17
     1121  RenderMathMLBlock (flex) {mo} at (0,20) size 7x10
     1122    RenderBlock (anonymous) at (0,0) size 7x10
     1123      RenderText {mo} at (0,-4) size 7x21
     1124        text run at (0,-4) width 7: "\x{23AA}"
     1125layer at (120,307) size 7x10 scrollHeight 17
     1126  RenderMathMLBlock (flex) {mo} at (0,30) size 7x10
     1127    RenderBlock (anonymous) at (0,0) size 7x10
     1128      RenderText {mo} at (0,-4) size 7x21
     1129        text run at (0,-4) width 7: "\x{23AA}"
     1130layer at (120,317) size 7x10 scrollHeight 17
     1131  RenderMathMLBlock (flex) {mo} at (0,40) size 7x10
     1132    RenderBlock (anonymous) at (0,0) size 7x10
     1133      RenderText {mo} at (0,-4) size 7x21
     1134        text run at (0,-4) width 7: "\x{23AA}"
     1135layer at (120,327) size 7x10 scrollHeight 17
     1136  RenderMathMLBlock (flex) {mo} at (0,50) size 7x10
     1137    RenderBlock (anonymous) at (0,0) size 7x10
     1138      RenderText {mo} at (0,-4) size 7x21
     1139        text run at (0,-4) width 7: "\x{23AA}"
     1140layer at (120,337) size 7x7 scrollHeight 17
     1141  RenderMathMLBlock (flex) {mo} at (0,60) size 7x7
     1142    RenderBlock (anonymous) at (0,0) size 7x7
     1143      RenderText {mo} at (0,-4) size 7x21
     1144        text run at (0,-4) width 7: "\x{23AA}"
     1145layer at (120,344) size 7x10 scrollHeight 17
     1146  RenderMathMLBlock (flex) {mo} at (0,67) size 7x10
     1147    RenderBlock (anonymous) at (0,0) size 7x10
     1148layer at (120,354) size 7x10 scrollHeight 17
     1149  RenderMathMLBlock (flex) {mo} at (0,77) size 7x10
     1150    RenderBlock (anonymous) at (0,0) size 7x10
     1151      RenderText {mo} at (0,-4) size 7x21
     1152        text run at (0,-4) width 7: "\x{23AA}"
     1153layer at (120,364) size 7x10 scrollHeight 17
     1154  RenderMathMLBlock (flex) {mo} at (0,87) size 7x10
     1155    RenderBlock (anonymous) at (0,0) size 7x10
     1156      RenderText {mo} at (0,-4) size 7x21
     1157        text run at (0,-4) width 7: "\x{23AA}"
     1158layer at (120,374) size 7x10 scrollHeight 17
     1159  RenderMathMLBlock (flex) {mo} at (0,97) size 7x10
     1160    RenderBlock (anonymous) at (0,0) size 7x10
     1161      RenderText {mo} at (0,-4) size 7x21
     1162        text run at (0,-4) width 7: "\x{23AA}"
     1163layer at (120,384) size 7x10 scrollHeight 17
     1164  RenderMathMLBlock (flex) {mo} at (0,107) size 7x10
     1165    RenderBlock (anonymous) at (0,0) size 7x10
     1166      RenderText {mo} at (0,-4) size 7x21
     1167        text run at (0,-4) width 7: "\x{23AA}"
     1168layer at (120,394) size 7x10 scrollHeight 17
     1169  RenderMathMLBlock (flex) {mo} at (0,117) size 7x10
     1170    RenderBlock (anonymous) at (0,0) size 7x10
     1171      RenderText {mo} at (0,-4) size 7x21
     1172        text run at (0,-4) width 7: "\x{23AA}"
     1173layer at (120,404) size 7x7 scrollHeight 17
     1174  RenderMathMLBlock (flex) {mo} at (0,127) size 7x7
     1175    RenderBlock (anonymous) at (0,0) size 7x7
     1176      RenderText {mo} at (0,-4) size 7x21
     1177        text run at (0,-4) width 7: "\x{23AA}"
     1178layer at (120,411) size 7x15 scrollHeight 17
     1179  RenderMathMLBlock (flex) {mo} at (0,134) size 7x15
     1180    RenderBlock (anonymous) at (0,0) size 7x15
     1181layer at (134,277) size 5x10 scrollHeight 18
     1182  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     1183    RenderBlock (anonymous) at (0,0) size 5x10
     1184layer at (134,287) size 5x10 scrollHeight 17
     1185  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     1186    RenderBlock (anonymous) at (0,0) size 5x10
     1187      RenderText {mo} at (0,-4) size 5x21
     1188        text run at (0,-4) width 5: "\x{23A2}"
     1189layer at (134,297) size 5x10 scrollHeight 17
     1190  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     1191    RenderBlock (anonymous) at (0,0) size 5x10
     1192      RenderText {mo} at (0,-4) size 5x21
     1193        text run at (0,-4) width 5: "\x{23A2}"
     1194layer at (134,307) size 5x10 scrollHeight 17
     1195  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     1196    RenderBlock (anonymous) at (0,0) size 5x10
     1197      RenderText {mo} at (0,-4) size 5x21
     1198        text run at (0,-4) width 5: "\x{23A2}"
     1199layer at (134,317) size 5x10 scrollHeight 17
     1200  RenderMathMLBlock (flex) {mo} at (0,40) size 5x10
     1201    RenderBlock (anonymous) at (0,0) size 5x10
     1202      RenderText {mo} at (0,-4) size 5x21
     1203        text run at (0,-4) width 5: "\x{23A2}"
     1204layer at (134,327) size 5x10 scrollHeight 17
     1205  RenderMathMLBlock (flex) {mo} at (0,50) size 5x10
     1206    RenderBlock (anonymous) at (0,0) size 5x10
     1207      RenderText {mo} at (0,-4) size 5x21
     1208        text run at (0,-4) width 5: "\x{23A2}"
     1209layer at (134,337) size 5x10 scrollHeight 17
     1210  RenderMathMLBlock (flex) {mo} at (0,60) size 5x10
     1211    RenderBlock (anonymous) at (0,0) size 5x10
     1212      RenderText {mo} at (0,-4) size 5x21
     1213        text run at (0,-4) width 5: "\x{23A2}"
     1214layer at (134,347) size 5x10 scrollHeight 17
     1215  RenderMathMLBlock (flex) {mo} at (0,70) size 5x10
     1216    RenderBlock (anonymous) at (0,0) size 5x10
     1217      RenderText {mo} at (0,-4) size 5x21
     1218        text run at (0,-4) width 5: "\x{23A2}"
     1219layer at (134,357) size 5x10 scrollHeight 17
     1220  RenderMathMLBlock (flex) {mo} at (0,80) size 5x10
     1221    RenderBlock (anonymous) at (0,0) size 5x10
     1222      RenderText {mo} at (0,-4) size 5x21
     1223        text run at (0,-4) width 5: "\x{23A2}"
     1224layer at (134,367) size 5x10 scrollHeight 17
     1225  RenderMathMLBlock (flex) {mo} at (0,90) size 5x10
     1226    RenderBlock (anonymous) at (0,0) size 5x10
     1227      RenderText {mo} at (0,-4) size 5x21
     1228        text run at (0,-4) width 5: "\x{23A2}"
     1229layer at (134,377) size 5x10 scrollHeight 17
     1230  RenderMathMLBlock (flex) {mo} at (0,100) size 5x10
     1231    RenderBlock (anonymous) at (0,0) size 5x10
     1232      RenderText {mo} at (0,-4) size 5x21
     1233        text run at (0,-4) width 5: "\x{23A2}"
     1234layer at (134,387) size 5x10 scrollHeight 17
     1235  RenderMathMLBlock (flex) {mo} at (0,110) size 5x10
     1236    RenderBlock (anonymous) at (0,0) size 5x10
     1237      RenderText {mo} at (0,-4) size 5x21
     1238        text run at (0,-4) width 5: "\x{23A2}"
     1239layer at (134,397) size 5x10 scrollHeight 17
     1240  RenderMathMLBlock (flex) {mo} at (0,120) size 5x10
     1241    RenderBlock (anonymous) at (0,0) size 5x10
     1242      RenderText {mo} at (0,-4) size 5x21
     1243        text run at (0,-4) width 5: "\x{23A2}"
     1244layer at (134,407) size 5x4 scrollHeight 17
     1245  RenderMathMLBlock (flex) {mo} at (0,130) size 5x4
     1246    RenderBlock (anonymous) at (0,0) size 5x4
     1247      RenderText {mo} at (0,-4) size 5x21
     1248        text run at (0,-4) width 5: "\x{23A2}"
     1249layer at (134,411) size 5x15 scrollHeight 17
     1250  RenderMathMLBlock (flex) {mo} at (0,134) size 5x15
     1251    RenderBlock (anonymous) at (0,0) size 5x15
     1252layer at (195,277) size 5x10 scrollHeight 18
     1253  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     1254    RenderBlock (anonymous) at (0,0) size 5x10
     1255layer at (195,287) size 5x10 scrollHeight 17
     1256  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     1257    RenderBlock (anonymous) at (0,0) size 5x10
     1258      RenderText {mo} at (0,-4) size 5x21
     1259        text run at (0,-4) width 5: "\x{23A5}"
     1260layer at (195,297) size 5x10 scrollHeight 17
     1261  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     1262    RenderBlock (anonymous) at (0,0) size 5x10
     1263      RenderText {mo} at (0,-4) size 5x21
     1264        text run at (0,-4) width 5: "\x{23A5}"
     1265layer at (195,307) size 5x10 scrollHeight 17
     1266  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     1267    RenderBlock (anonymous) at (0,0) size 5x10
     1268      RenderText {mo} at (0,-4) size 5x21
     1269        text run at (0,-4) width 5: "\x{23A5}"
     1270layer at (195,317) size 5x10 scrollHeight 17
     1271  RenderMathMLBlock (flex) {mo} at (0,40) size 5x10
     1272    RenderBlock (anonymous) at (0,0) size 5x10
     1273      RenderText {mo} at (0,-4) size 5x21
     1274        text run at (0,-4) width 5: "\x{23A5}"
     1275layer at (195,327) size 5x10 scrollHeight 17
     1276  RenderMathMLBlock (flex) {mo} at (0,50) size 5x10
     1277    RenderBlock (anonymous) at (0,0) size 5x10
     1278      RenderText {mo} at (0,-4) size 5x21
     1279        text run at (0,-4) width 5: "\x{23A5}"
     1280layer at (195,337) size 5x10 scrollHeight 17
     1281  RenderMathMLBlock (flex) {mo} at (0,60) size 5x10
     1282    RenderBlock (anonymous) at (0,0) size 5x10
     1283      RenderText {mo} at (0,-4) size 5x21
     1284        text run at (0,-4) width 5: "\x{23A5}"
     1285layer at (195,347) size 5x10 scrollHeight 17
     1286  RenderMathMLBlock (flex) {mo} at (0,70) size 5x10
     1287    RenderBlock (anonymous) at (0,0) size 5x10
     1288      RenderText {mo} at (0,-4) size 5x21
     1289        text run at (0,-4) width 5: "\x{23A5}"
     1290layer at (195,357) size 5x10 scrollHeight 17
     1291  RenderMathMLBlock (flex) {mo} at (0,80) size 5x10
     1292    RenderBlock (anonymous) at (0,0) size 5x10
     1293      RenderText {mo} at (0,-4) size 5x21
     1294        text run at (0,-4) width 5: "\x{23A5}"
     1295layer at (195,367) size 5x10 scrollHeight 17
     1296  RenderMathMLBlock (flex) {mo} at (0,90) size 5x10
     1297    RenderBlock (anonymous) at (0,0) size 5x10
     1298      RenderText {mo} at (0,-4) size 5x21
     1299        text run at (0,-4) width 5: "\x{23A5}"
     1300layer at (195,377) size 5x10 scrollHeight 17
     1301  RenderMathMLBlock (flex) {mo} at (0,100) size 5x10
     1302    RenderBlock (anonymous) at (0,0) size 5x10
     1303      RenderText {mo} at (0,-4) size 5x21
     1304        text run at (0,-4) width 5: "\x{23A5}"
     1305layer at (195,387) size 5x10 scrollHeight 17
     1306  RenderMathMLBlock (flex) {mo} at (0,110) size 5x10
     1307    RenderBlock (anonymous) at (0,0) size 5x10
     1308      RenderText {mo} at (0,-4) size 5x21
     1309        text run at (0,-4) width 5: "\x{23A5}"
     1310layer at (195,397) size 5x10 scrollHeight 17
     1311  RenderMathMLBlock (flex) {mo} at (0,120) size 5x10
     1312    RenderBlock (anonymous) at (0,0) size 5x10
     1313      RenderText {mo} at (0,-4) size 5x21
     1314        text run at (0,-4) width 5: "\x{23A5}"
     1315layer at (195,407) size 5x4 scrollHeight 17
     1316  RenderMathMLBlock (flex) {mo} at (0,130) size 5x4
     1317    RenderBlock (anonymous) at (0,0) size 5x4
     1318      RenderText {mo} at (0,-4) size 5x21
     1319        text run at (0,-4) width 5: "\x{23A5}"
     1320layer at (195,411) size 5x15 scrollHeight 17
     1321  RenderMathMLBlock (flex) {mo} at (0,134) size 5x15
     1322    RenderBlock (anonymous) at (0,0) size 5x15
     1323layer at (207,277) size 5x10 scrollHeight 18
     1324  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     1325    RenderBlock (anonymous) at (0,0) size 5x10
     1326layer at (207,287) size 5x10 scrollHeight 17
     1327  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     1328    RenderBlock (anonymous) at (0,0) size 5x10
     1329      RenderText {mo} at (0,-4) size 5x21
     1330        text run at (0,-4) width 5: "\x{239C}"
     1331layer at (207,297) size 5x10 scrollHeight 17
     1332  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     1333    RenderBlock (anonymous) at (0,0) size 5x10
     1334      RenderText {mo} at (0,-4) size 5x21
     1335        text run at (0,-4) width 5: "\x{239C}"
     1336layer at (207,307) size 5x10 scrollHeight 17
     1337  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     1338    RenderBlock (anonymous) at (0,0) size 5x10
     1339      RenderText {mo} at (0,-4) size 5x21
     1340        text run at (0,-4) width 5: "\x{239C}"
     1341layer at (207,317) size 5x10 scrollHeight 17
     1342  RenderMathMLBlock (flex) {mo} at (0,40) size 5x10
     1343    RenderBlock (anonymous) at (0,0) size 5x10
     1344      RenderText {mo} at (0,-4) size 5x21
     1345        text run at (0,-4) width 5: "\x{239C}"
     1346layer at (207,327) size 5x10 scrollHeight 17
     1347  RenderMathMLBlock (flex) {mo} at (0,50) size 5x10
     1348    RenderBlock (anonymous) at (0,0) size 5x10
     1349      RenderText {mo} at (0,-4) size 5x21
     1350        text run at (0,-4) width 5: "\x{239C}"
     1351layer at (207,337) size 5x10 scrollHeight 17
     1352  RenderMathMLBlock (flex) {mo} at (0,60) size 5x10
     1353    RenderBlock (anonymous) at (0,0) size 5x10
     1354      RenderText {mo} at (0,-4) size 5x21
     1355        text run at (0,-4) width 5: "\x{239C}"
     1356layer at (207,347) size 5x10 scrollHeight 17
     1357  RenderMathMLBlock (flex) {mo} at (0,70) size 5x10
     1358    RenderBlock (anonymous) at (0,0) size 5x10
     1359      RenderText {mo} at (0,-4) size 5x21
     1360        text run at (0,-4) width 5: "\x{239C}"
     1361layer at (207,357) size 5x10 scrollHeight 17
     1362  RenderMathMLBlock (flex) {mo} at (0,80) size 5x10
     1363    RenderBlock (anonymous) at (0,0) size 5x10
     1364      RenderText {mo} at (0,-4) size 5x21
     1365        text run at (0,-4) width 5: "\x{239C}"
     1366layer at (207,367) size 5x10 scrollHeight 17
     1367  RenderMathMLBlock (flex) {mo} at (0,90) size 5x10
     1368    RenderBlock (anonymous) at (0,0) size 5x10
     1369      RenderText {mo} at (0,-4) size 5x21
     1370        text run at (0,-4) width 5: "\x{239C}"
     1371layer at (207,377) size 5x10 scrollHeight 17
     1372  RenderMathMLBlock (flex) {mo} at (0,100) size 5x10
     1373    RenderBlock (anonymous) at (0,0) size 5x10
     1374      RenderText {mo} at (0,-4) size 5x21
     1375        text run at (0,-4) width 5: "\x{239C}"
     1376layer at (207,387) size 5x10 scrollHeight 17
     1377  RenderMathMLBlock (flex) {mo} at (0,110) size 5x10
     1378    RenderBlock (anonymous) at (0,0) size 5x10
     1379      RenderText {mo} at (0,-4) size 5x21
     1380        text run at (0,-4) width 5: "\x{239C}"
     1381layer at (207,397) size 5x10 scrollHeight 17
     1382  RenderMathMLBlock (flex) {mo} at (0,120) size 5x10
     1383    RenderBlock (anonymous) at (0,0) size 5x10
     1384      RenderText {mo} at (0,-4) size 5x21
     1385        text run at (0,-4) width 5: "\x{239C}"
     1386layer at (207,407) size 5x4 scrollHeight 17
     1387  RenderMathMLBlock (flex) {mo} at (0,130) size 5x4
     1388    RenderBlock (anonymous) at (0,0) size 5x4
     1389      RenderText {mo} at (0,-4) size 5x21
     1390        text run at (0,-4) width 5: "\x{239C}"
     1391layer at (207,411) size 5x14 scrollHeight 17
     1392  RenderMathMLBlock (flex) {mo} at (0,134) size 5x14
     1393    RenderBlock (anonymous) at (0,0) size 5x14
     1394layer at (268,277) size 5x10 scrollHeight 18
     1395  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     1396    RenderBlock (anonymous) at (0,0) size 5x10
     1397layer at (268,287) size 5x10 scrollHeight 17
     1398  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     1399    RenderBlock (anonymous) at (0,0) size 5x10
     1400      RenderText {mo} at (0,-4) size 5x21
     1401        text run at (0,-4) width 5: "\x{239F}"
     1402layer at (268,297) size 5x10 scrollHeight 17
     1403  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     1404    RenderBlock (anonymous) at (0,0) size 5x10
     1405      RenderText {mo} at (0,-4) size 5x21
     1406        text run at (0,-4) width 5: "\x{239F}"
     1407layer at (268,307) size 5x10 scrollHeight 17
     1408  RenderMathMLBlock (flex) {mo} at (0,30) size 5x10
     1409    RenderBlock (anonymous) at (0,0) size 5x10
     1410      RenderText {mo} at (0,-4) size 5x21
     1411        text run at (0,-4) width 5: "\x{239F}"
     1412layer at (268,317) size 5x10 scrollHeight 17
     1413  RenderMathMLBlock (flex) {mo} at (0,40) size 5x10
     1414    RenderBlock (anonymous) at (0,0) size 5x10
     1415      RenderText {mo} at (0,-4) size 5x21
     1416        text run at (0,-4) width 5: "\x{239F}"
     1417layer at (268,327) size 5x10 scrollHeight 17
     1418  RenderMathMLBlock (flex) {mo} at (0,50) size 5x10
     1419    RenderBlock (anonymous) at (0,0) size 5x10
     1420      RenderText {mo} at (0,-4) size 5x21
     1421        text run at (0,-4) width 5: "\x{239F}"
     1422layer at (268,337) size 5x10 scrollHeight 17
     1423  RenderMathMLBlock (flex) {mo} at (0,60) size 5x10
     1424    RenderBlock (anonymous) at (0,0) size 5x10
     1425      RenderText {mo} at (0,-4) size 5x21
     1426        text run at (0,-4) width 5: "\x{239F}"
     1427layer at (268,347) size 5x10 scrollHeight 17
     1428  RenderMathMLBlock (flex) {mo} at (0,70) size 5x10
     1429    RenderBlock (anonymous) at (0,0) size 5x10
     1430      RenderText {mo} at (0,-4) size 5x21
     1431        text run at (0,-4) width 5: "\x{239F}"
     1432layer at (268,357) size 5x10 scrollHeight 17
     1433  RenderMathMLBlock (flex) {mo} at (0,80) size 5x10
     1434    RenderBlock (anonymous) at (0,0) size 5x10
     1435      RenderText {mo} at (0,-4) size 5x21
     1436        text run at (0,-4) width 5: "\x{239F}"
     1437layer at (268,367) size 5x10 scrollHeight 17
     1438  RenderMathMLBlock (flex) {mo} at (0,90) size 5x10
     1439    RenderBlock (anonymous) at (0,0) size 5x10
     1440      RenderText {mo} at (0,-4) size 5x21
     1441        text run at (0,-4) width 5: "\x{239F}"
     1442layer at (268,377) size 5x10 scrollHeight 17
     1443  RenderMathMLBlock (flex) {mo} at (0,100) size 5x10
     1444    RenderBlock (anonymous) at (0,0) size 5x10
     1445      RenderText {mo} at (0,-4) size 5x21
     1446        text run at (0,-4) width 5: "\x{239F}"
     1447layer at (268,387) size 5x10 scrollHeight 17
     1448  RenderMathMLBlock (flex) {mo} at (0,110) size 5x10
     1449    RenderBlock (anonymous) at (0,0) size 5x10
     1450      RenderText {mo} at (0,-4) size 5x21
     1451        text run at (0,-4) width 5: "\x{239F}"
     1452layer at (268,397) size 5x10 scrollHeight 17
     1453  RenderMathMLBlock (flex) {mo} at (0,120) size 5x10
     1454    RenderBlock (anonymous) at (0,0) size 5x10
     1455      RenderText {mo} at (0,-4) size 5x21
     1456        text run at (0,-4) width 5: "\x{239F}"
     1457layer at (268,407) size 5x4 scrollHeight 17
     1458  RenderMathMLBlock (flex) {mo} at (0,130) size 5x4
     1459    RenderBlock (anonymous) at (0,0) size 5x4
     1460      RenderText {mo} at (0,-4) size 5x21
     1461        text run at (0,-4) width 5: "\x{239F}"
     1462layer at (268,411) size 5x14 scrollHeight 17
     1463  RenderMathMLBlock (flex) {mo} at (0,134) size 5x14
     1464    RenderBlock (anonymous) at (0,0) size 5x14
     1465layer at (280,277) size 7x4 scrollHeight 13
     1466  RenderMathMLBlock (flex) {mo} at (0,0) size 7x4
     1467    RenderBlock (anonymous) at (0,0) size 7x4
     1468layer at (280,281) size 7x4 scrollHeight 12
     1469  RenderMathMLBlock (flex) {mo} at (0,4) size 7x4
     1470    RenderBlock (anonymous) at (0,0) size 7x4
     1471      RenderText {mo} at (0,-9) size 7x21
     1472        text run at (0,-9) width 7: "\x{23D0}"
     1473layer at (280,285) size 7x4 scrollHeight 12
     1474  RenderMathMLBlock (flex) {mo} at (0,8) size 7x4
     1475    RenderBlock (anonymous) at (0,0) size 7x4
     1476      RenderText {mo} at (0,-9) size 7x21
     1477        text run at (0,-9) width 7: "\x{23D0}"
     1478layer at (280,289) size 7x4 scrollHeight 12
     1479  RenderMathMLBlock (flex) {mo} at (0,12) size 7x4
     1480    RenderBlock (anonymous) at (0,0) size 7x4
     1481      RenderText {mo} at (0,-9) size 7x21
     1482        text run at (0,-9) width 7: "\x{23D0}"
     1483layer at (280,293) size 7x4 scrollHeight 12
     1484  RenderMathMLBlock (flex) {mo} at (0,16) size 7x4
     1485    RenderBlock (anonymous) at (0,0) size 7x4
     1486      RenderText {mo} at (0,-9) size 7x21
     1487        text run at (0,-9) width 7: "\x{23D0}"
     1488layer at (280,297) size 7x4 scrollHeight 12
     1489  RenderMathMLBlock (flex) {mo} at (0,20) size 7x4
     1490    RenderBlock (anonymous) at (0,0) size 7x4
     1491      RenderText {mo} at (0,-9) size 7x21
     1492        text run at (0,-9) width 7: "\x{23D0}"
     1493layer at (280,301) size 7x4 scrollHeight 12
     1494  RenderMathMLBlock (flex) {mo} at (0,24) size 7x4
     1495    RenderBlock (anonymous) at (0,0) size 7x4
     1496      RenderText {mo} at (0,-9) size 7x21
     1497        text run at (0,-9) width 7: "\x{23D0}"
     1498layer at (280,305) size 7x4 scrollHeight 12
     1499  RenderMathMLBlock (flex) {mo} at (0,28) size 7x4
     1500    RenderBlock (anonymous) at (0,0) size 7x4
     1501      RenderText {mo} at (0,-9) size 7x21
     1502        text run at (0,-9) width 7: "\x{23D0}"
     1503layer at (280,309) size 7x4 scrollHeight 12
     1504  RenderMathMLBlock (flex) {mo} at (0,32) size 7x4
     1505    RenderBlock (anonymous) at (0,0) size 7x4
     1506      RenderText {mo} at (0,-9) size 7x21
     1507        text run at (0,-9) width 7: "\x{23D0}"
     1508layer at (280,313) size 7x4 scrollHeight 12
     1509  RenderMathMLBlock (flex) {mo} at (0,36) size 7x4
     1510    RenderBlock (anonymous) at (0,0) size 7x4
     1511      RenderText {mo} at (0,-9) size 7x21
     1512        text run at (0,-9) width 7: "\x{23D0}"
     1513layer at (280,317) size 7x4 scrollHeight 12
     1514  RenderMathMLBlock (flex) {mo} at (0,40) size 7x4
     1515    RenderBlock (anonymous) at (0,0) size 7x4
     1516      RenderText {mo} at (0,-9) size 7x21
     1517        text run at (0,-9) width 7: "\x{23D0}"
     1518layer at (280,321) size 7x4 scrollHeight 12
     1519  RenderMathMLBlock (flex) {mo} at (0,44) size 7x4
     1520    RenderBlock (anonymous) at (0,0) size 7x4
     1521      RenderText {mo} at (0,-9) size 7x21
     1522        text run at (0,-9) width 7: "\x{23D0}"
     1523layer at (280,325) size 7x4 scrollHeight 12
     1524  RenderMathMLBlock (flex) {mo} at (0,48) size 7x4
     1525    RenderBlock (anonymous) at (0,0) size 7x4
     1526      RenderText {mo} at (0,-9) size 7x21
     1527        text run at (0,-9) width 7: "\x{23D0}"
     1528layer at (280,329) size 7x4 scrollHeight 12
     1529  RenderMathMLBlock (flex) {mo} at (0,52) size 7x4
     1530    RenderBlock (anonymous) at (0,0) size 7x4
     1531      RenderText {mo} at (0,-9) size 7x21
     1532        text run at (0,-9) width 7: "\x{23D0}"
     1533layer at (280,333) size 7x4 scrollHeight 12
     1534  RenderMathMLBlock (flex) {mo} at (0,56) size 7x4
     1535    RenderBlock (anonymous) at (0,0) size 7x4
     1536      RenderText {mo} at (0,-9) size 7x21
     1537        text run at (0,-9) width 7: "\x{23D0}"
     1538layer at (280,337) size 7x4 scrollHeight 12
     1539  RenderMathMLBlock (flex) {mo} at (0,60) size 7x4
     1540    RenderBlock (anonymous) at (0,0) size 7x4
     1541      RenderText {mo} at (0,-9) size 7x21
     1542        text run at (0,-9) width 7: "\x{23D0}"
     1543layer at (280,341) size 7x4 scrollHeight 12
     1544  RenderMathMLBlock (flex) {mo} at (0,64) size 7x4
     1545    RenderBlock (anonymous) at (0,0) size 7x4
     1546      RenderText {mo} at (0,-9) size 7x21
     1547        text run at (0,-9) width 7: "\x{23D0}"
     1548layer at (280,345) size 7x4 scrollHeight 12
     1549  RenderMathMLBlock (flex) {mo} at (0,68) size 7x4
     1550    RenderBlock (anonymous) at (0,0) size 7x4
     1551      RenderText {mo} at (0,-9) size 7x21
     1552        text run at (0,-9) width 7: "\x{23D0}"
    11751553layer at (280,349) size 7x4 scrollHeight 12
    1176   RenderMathMLBlock (block) {mo} at (0,4) size 7x4
    1177     RenderText {mo} at (0,-9) size 7x21
    1178       text run at (0,-9) width 7: "\x{23D0}"
     1554  RenderMathMLBlock (flex) {mo} at (0,72) size 7x4
     1555    RenderBlock (anonymous) at (0,0) size 7x4
     1556      RenderText {mo} at (0,-9) size 7x21
     1557        text run at (0,-9) width 7: "\x{23D0}"
    11791558layer at (280,353) size 7x4 scrollHeight 12
    1180   RenderMathMLBlock (block) {mo} at (0,8) size 7x4
    1181     RenderText {mo} at (0,-9) size 7x21
    1182       text run at (0,-9) width 7: "\x{23D0}"
     1559  RenderMathMLBlock (flex) {mo} at (0,76) size 7x4
     1560    RenderBlock (anonymous) at (0,0) size 7x4
     1561      RenderText {mo} at (0,-9) size 7x21
     1562        text run at (0,-9) width 7: "\x{23D0}"
    11831563layer at (280,357) size 7x4 scrollHeight 12
    1184   RenderMathMLBlock (block) {mo} at (0,12) size 7x4
    1185     RenderText {mo} at (0,-9) size 7x21
    1186       text run at (0,-9) width 7: "\x{23D0}"
     1564  RenderMathMLBlock (flex) {mo} at (0,80) size 7x4
     1565    RenderBlock (anonymous) at (0,0) size 7x4
     1566      RenderText {mo} at (0,-9) size 7x21
     1567        text run at (0,-9) width 7: "\x{23D0}"
    11871568layer at (280,361) size 7x4 scrollHeight 12
    1188   RenderMathMLBlock (block) {mo} at (0,16) size 7x4
    1189     RenderText {mo} at (0,-9) size 7x21
    1190       text run at (0,-9) width 7: "\x{23D0}"
     1569  RenderMathMLBlock (flex) {mo} at (0,84) size 7x4
     1570    RenderBlock (anonymous) at (0,0) size 7x4
     1571      RenderText {mo} at (0,-9) size 7x21
     1572        text run at (0,-9) width 7: "\x{23D0}"
    11911573layer at (280,365) size 7x4 scrollHeight 12
    1192   RenderMathMLBlock (block) {mo} at (0,20) size 7x4
    1193     RenderText {mo} at (0,-9) size 7x21
    1194       text run at (0,-9) width 7: "\x{23D0}"
     1574  RenderMathMLBlock (flex) {mo} at (0,88) size 7x4
     1575    RenderBlock (anonymous) at (0,0) size 7x4
     1576      RenderText {mo} at (0,-9) size 7x21
     1577        text run at (0,-9) width 7: "\x{23D0}"
    11951578layer at (280,369) size 7x4 scrollHeight 12
    1196   RenderMathMLBlock (block) {mo} at (0,24) size 7x4
    1197     RenderText {mo} at (0,-9) size 7x21
    1198       text run at (0,-9) width 7: "\x{23D0}"
     1579  RenderMathMLBlock (flex) {mo} at (0,92) size 7x4
     1580    RenderBlock (anonymous) at (0,0) size 7x4
     1581      RenderText {mo} at (0,-9) size 7x21
     1582        text run at (0,-9) width 7: "\x{23D0}"
    11991583layer at (280,373) size 7x4 scrollHeight 12
    1200   RenderMathMLBlock (block) {mo} at (0,28) size 7x4
    1201     RenderText {mo} at (0,-9) size 7x21
    1202       text run at (0,-9) width 7: "\x{23D0}"
     1584  RenderMathMLBlock (flex) {mo} at (0,96) size 7x4
     1585    RenderBlock (anonymous) at (0,0) size 7x4
     1586      RenderText {mo} at (0,-9) size 7x21
     1587        text run at (0,-9) width 7: "\x{23D0}"
    12031588layer at (280,377) size 7x4 scrollHeight 12
    1204   RenderMathMLBlock (block) {mo} at (0,32) size 7x4
    1205     RenderText {mo} at (0,-9) size 7x21
    1206       text run at (0,-9) width 7: "\x{23D0}"
     1589  RenderMathMLBlock (flex) {mo} at (0,100) size 7x4
     1590    RenderBlock (anonymous) at (0,0) size 7x4
     1591      RenderText {mo} at (0,-9) size 7x21
     1592        text run at (0,-9) width 7: "\x{23D0}"
    12071593layer at (280,381) size 7x4 scrollHeight 12
    1208   RenderMathMLBlock (block) {mo} at (0,36) size 7x4
    1209     RenderText {mo} at (0,-9) size 7x21
    1210       text run at (0,-9) width 7: "\x{23D0}"
     1594  RenderMathMLBlock (flex) {mo} at (0,104) size 7x4
     1595    RenderBlock (anonymous) at (0,0) size 7x4
     1596      RenderText {mo} at (0,-9) size 7x21
     1597        text run at (0,-9) width 7: "\x{23D0}"
    12111598layer at (280,385) size 7x4 scrollHeight 12
    1212   RenderMathMLBlock (block) {mo} at (0,40) size 7x4
    1213     RenderText {mo} at (0,-9) size 7x21
    1214       text run at (0,-9) width 7: "\x{23D0}"
     1599  RenderMathMLBlock (flex) {mo} at (0,108) size 7x4
     1600    RenderBlock (anonymous) at (0,0) size 7x4
     1601      RenderText {mo} at (0,-9) size 7x21
     1602        text run at (0,-9) width 7: "\x{23D0}"
    12151603layer at (280,389) size 7x4 scrollHeight 12
    1216   RenderMathMLBlock (block) {mo} at (0,44) size 7x4
    1217     RenderText {mo} at (0,-9) size 7x21
    1218       text run at (0,-9) width 7: "\x{23D0}"
     1604  RenderMathMLBlock (flex) {mo} at (0,112) size 7x4
     1605    RenderBlock (anonymous) at (0,0) size 7x4
     1606      RenderText {mo} at (0,-9) size 7x21
     1607        text run at (0,-9) width 7: "\x{23D0}"
    12191608layer at (280,393) size 7x4 scrollHeight 12
    1220   RenderMathMLBlock (block) {mo} at (0,48) size 7x4
    1221     RenderText {mo} at (0,-9) size 7x21
    1222       text run at (0,-9) width 7: "\x{23D0}"
     1609  RenderMathMLBlock (flex) {mo} at (0,116) size 7x4
     1610    RenderBlock (anonymous) at (0,0) size 7x4
     1611      RenderText {mo} at (0,-9) size 7x21
     1612        text run at (0,-9) width 7: "\x{23D0}"
    12231613layer at (280,397) size 7x4 scrollHeight 12
    1224   RenderMathMLBlock (block) {mo} at (0,52) size 7x4
    1225     RenderText {mo} at (0,-9) size 7x21
    1226       text run at (0,-9) width 7: "\x{23D0}"
     1614  RenderMathMLBlock (flex) {mo} at (0,120) size 7x4
     1615    RenderBlock (anonymous) at (0,0) size 7x4
     1616      RenderText {mo} at (0,-9) size 7x21
     1617        text run at (0,-9) width 7: "\x{23D0}"
    12271618layer at (280,401) size 7x4 scrollHeight 12
    1228   RenderMathMLBlock (block) {mo} at (0,56) size 7x4
    1229     RenderText {mo} at (0,-9) size 7x21
    1230       text run at (0,-9) width 7: "\x{23D0}"
     1619  RenderMathMLBlock (flex) {mo} at (0,124) size 7x4
     1620    RenderBlock (anonymous) at (0,0) size 7x4
     1621      RenderText {mo} at (0,-9) size 7x21
     1622        text run at (0,-9) width 7: "\x{23D0}"
    12311623layer at (280,405) size 7x4 scrollHeight 12
    1232   RenderMathMLBlock (block) {mo} at (0,60) size 7x4
    1233     RenderText {mo} at (0,-9) size 7x21
    1234       text run at (0,-9) width 7: "\x{23D0}"
     1624  RenderMathMLBlock (flex) {mo} at (0,128) size 7x4
     1625    RenderBlock (anonymous) at (0,0) size 7x4
     1626      RenderText {mo} at (0,-9) size 7x21
     1627        text run at (0,-9) width 7: "\x{23D0}"
    12351628layer at (280,409) size 7x4 scrollHeight 12
    1236   RenderMathMLBlock (block) {mo} at (0,64) size 7x4
    1237     RenderText {mo} at (0,-9) size 7x21
    1238       text run at (0,-9) width 7: "\x{23D0}"
     1629  RenderMathMLBlock (flex) {mo} at (0,132) size 7x4
     1630    RenderBlock (anonymous) at (0,0) size 7x4
     1631      RenderText {mo} at (0,-9) size 7x21
     1632        text run at (0,-9) width 7: "\x{23D0}"
    12391633layer at (280,413) size 7x4 scrollHeight 12
    1240   RenderMathMLBlock (block) {mo} at (0,68) size 7x4
    1241     RenderText {mo} at (0,-9) size 7x21
    1242       text run at (0,-9) width 7: "\x{23D0}"
    1243 layer at (280,417) size 7x4 scrollHeight 12
    1244   RenderMathMLBlock (block) {mo} at (0,72) size 7x4
    1245     RenderText {mo} at (0,-9) size 7x21
    1246       text run at (0,-9) width 7: "\x{23D0}"
    1247 layer at (280,421) size 7x4 scrollHeight 12
    1248   RenderMathMLBlock (block) {mo} at (0,76) size 7x4
    1249     RenderText {mo} at (0,-9) size 7x21
    1250       text run at (0,-9) width 7: "\x{23D0}"
    1251 layer at (280,425) size 7x4 scrollHeight 12
    1252   RenderMathMLBlock (block) {mo} at (0,80) size 7x4
    1253     RenderText {mo} at (0,-9) size 7x21
    1254       text run at (0,-9) width 7: "\x{23D0}"
    1255 layer at (280,429) size 7x4 scrollHeight 12
    1256   RenderMathMLBlock (block) {mo} at (0,84) size 7x4
    1257     RenderText {mo} at (0,-9) size 7x21
    1258       text run at (0,-9) width 7: "\x{23D0}"
    1259 layer at (280,433) size 7x4 scrollHeight 12
    1260   RenderMathMLBlock (block) {mo} at (0,88) size 7x4
    1261     RenderText {mo} at (0,-9) size 7x21
    1262       text run at (0,-9) width 7: "\x{23D0}"
    1263 layer at (280,437) size 7x4 scrollHeight 12
    1264   RenderMathMLBlock (block) {mo} at (0,92) size 7x4
    1265     RenderText {mo} at (0,-9) size 7x21
    1266       text run at (0,-9) width 7: "\x{23D0}"
    1267 layer at (280,441) size 7x4 scrollHeight 12
    1268   RenderMathMLBlock (block) {mo} at (0,96) size 7x4
    1269     RenderText {mo} at (0,-9) size 7x21
    1270       text run at (0,-9) width 7: "\x{23D0}"
    1271 layer at (280,445) size 7x4 scrollHeight 12
    1272   RenderMathMLBlock (block) {mo} at (0,100) size 7x4
    1273     RenderText {mo} at (0,-9) size 7x21
    1274       text run at (0,-9) width 7: "\x{23D0}"
    1275 layer at (280,449) size 7x4 scrollHeight 12
    1276   RenderMathMLBlock (block) {mo} at (0,104) size 7x4
    1277     RenderText {mo} at (0,-9) size 7x21
    1278       text run at (0,-9) width 7: "\x{23D0}"
    1279 layer at (280,453) size 7x4 scrollHeight 12
    1280   RenderMathMLBlock (block) {mo} at (0,108) size 7x4
    1281     RenderText {mo} at (0,-9) size 7x21
    1282       text run at (0,-9) width 7: "\x{23D0}"
    1283 layer at (280,457) size 7x4 scrollHeight 12
    1284   RenderMathMLBlock (block) {mo} at (0,112) size 7x4
    1285     RenderText {mo} at (0,-9) size 7x21
    1286       text run at (0,-9) width 7: "\x{23D0}"
    1287 layer at (280,461) size 7x4 scrollHeight 12
    1288   RenderMathMLBlock (block) {mo} at (0,116) size 7x4
    1289     RenderText {mo} at (0,-9) size 7x21
    1290       text run at (0,-9) width 7: "\x{23D0}"
    1291 layer at (280,465) size 7x4 scrollHeight 12
    1292   RenderMathMLBlock (block) {mo} at (0,120) size 7x4
    1293     RenderText {mo} at (0,-9) size 7x21
    1294       text run at (0,-9) width 7: "\x{23D0}"
    1295 layer at (280,469) size 7x4 scrollHeight 12
    1296   RenderMathMLBlock (block) {mo} at (0,124) size 7x4
    1297     RenderText {mo} at (0,-9) size 7x21
    1298       text run at (0,-9) width 7: "\x{23D0}"
    1299 layer at (280,473) size 7x4 scrollHeight 12
    1300   RenderMathMLBlock (block) {mo} at (0,128) size 7x4
    1301     RenderText {mo} at (0,-9) size 7x21
    1302       text run at (0,-9) width 7: "\x{23D0}"
    1303 layer at (280,477) size 7x4 scrollHeight 12
    1304   RenderMathMLBlock (block) {mo} at (0,132) size 7x4
    1305     RenderText {mo} at (0,-9) size 7x21
    1306       text run at (0,-9) width 7: "\x{23D0}"
    1307 layer at (280,481) size 7x4 scrollHeight 12
    1308   RenderMathMLBlock (block) {mo} at (0,136) size 7x4
    1309     RenderText {mo} at (0,-9) size 7x21
    1310       text run at (0,-9) width 7: "\x{23D0}"
    1311 layer at (280,485) size 7x7 scrollHeight 12
    1312   RenderMathMLBlock (block) {mo} at (0,140) size 7x7
    1313 layer at (343,345) size 7x4 scrollHeight 13
    1314   RenderMathMLBlock (block) {mo} at (0,0) size 7x4
     1634  RenderMathMLBlock (flex) {mo} at (0,136) size 7x4
     1635    RenderBlock (anonymous) at (0,0) size 7x4
     1636      RenderText {mo} at (0,-9) size 7x21
     1637        text run at (0,-9) width 7: "\x{23D0}"
     1638layer at (280,417) size 7x7 scrollHeight 12
     1639  RenderMathMLBlock (flex) {mo} at (0,140) size 7x7
     1640    RenderBlock (anonymous) at (0,0) size 7x7
     1641layer at (343,277) size 7x4 scrollHeight 13
     1642  RenderMathMLBlock (flex) {mo} at (0,0) size 7x4
     1643    RenderBlock (anonymous) at (0,0) size 7x4
     1644layer at (343,281) size 7x4 scrollHeight 12
     1645  RenderMathMLBlock (flex) {mo} at (0,4) size 7x4
     1646    RenderBlock (anonymous) at (0,0) size 7x4
     1647      RenderText {mo} at (0,-9) size 7x21
     1648        text run at (0,-9) width 7: "\x{23D0}"
     1649layer at (343,285) size 7x4 scrollHeight 12
     1650  RenderMathMLBlock (flex) {mo} at (0,8) size 7x4
     1651    RenderBlock (anonymous) at (0,0) size 7x4
     1652      RenderText {mo} at (0,-9) size 7x21
     1653        text run at (0,-9) width 7: "\x{23D0}"
     1654layer at (343,289) size 7x4 scrollHeight 12
     1655  RenderMathMLBlock (flex) {mo} at (0,12) size 7x4
     1656    RenderBlock (anonymous) at (0,0) size 7x4
     1657      RenderText {mo} at (0,-9) size 7x21
     1658        text run at (0,-9) width 7: "\x{23D0}"
     1659layer at (343,293) size 7x4 scrollHeight 12
     1660  RenderMathMLBlock (flex) {mo} at (0,16) size 7x4
     1661    RenderBlock (anonymous) at (0,0) size 7x4
     1662      RenderText {mo} at (0,-9) size 7x21
     1663        text run at (0,-9) width 7: "\x{23D0}"
     1664layer at (343,297) size 7x4 scrollHeight 12
     1665  RenderMathMLBlock (flex) {mo} at (0,20) size 7x4
     1666    RenderBlock (anonymous) at (0,0) size 7x4
     1667      RenderText {mo} at (0,-9) size 7x21
     1668        text run at (0,-9) width 7: "\x{23D0}"
     1669layer at (343,301) size 7x4 scrollHeight 12
     1670  RenderMathMLBlock (flex) {mo} at (0,24) size 7x4
     1671    RenderBlock (anonymous) at (0,0) size 7x4
     1672      RenderText {mo} at (0,-9) size 7x21
     1673        text run at (0,-9) width 7: "\x{23D0}"
     1674layer at (343,305) size 7x4 scrollHeight 12
     1675  RenderMathMLBlock (flex) {mo} at (0,28) size 7x4
     1676    RenderBlock (anonymous) at (0,0) size 7x4
     1677      RenderText {mo} at (0,-9) size 7x21
     1678        text run at (0,-9) width 7: "\x{23D0}"
     1679layer at (343,309) size 7x4 scrollHeight 12
     1680  RenderMathMLBlock (flex) {mo} at (0,32) size 7x4
     1681    RenderBlock (anonymous) at (0,0) size 7x4
     1682      RenderText {mo} at (0,-9) size 7x21
     1683        text run at (0,-9) width 7: "\x{23D0}"
     1684layer at (343,313) size 7x4 scrollHeight 12
     1685  RenderMathMLBlock (flex) {mo} at (0,36) size 7x4
     1686    RenderBlock (anonymous) at (0,0) size 7x4
     1687      RenderText {mo} at (0,-9) size 7x21
     1688        text run at (0,-9) width 7: "\x{23D0}"
     1689layer at (343,317) size 7x4 scrollHeight 12
     1690  RenderMathMLBlock (flex) {mo} at (0,40) size 7x4
     1691    RenderBlock (anonymous) at (0,0) size 7x4
     1692      RenderText {mo} at (0,-9) size 7x21
     1693        text run at (0,-9) width 7: "\x{23D0}"
     1694layer at (343,321) size 7x4 scrollHeight 12
     1695  RenderMathMLBlock (flex) {mo} at (0,44) size 7x4
     1696    RenderBlock (anonymous) at (0,0) size 7x4
     1697      RenderText {mo} at (0,-9) size 7x21
     1698        text run at (0,-9) width 7: "\x{23D0}"
     1699layer at (343,325) size 7x4 scrollHeight 12
     1700  RenderMathMLBlock (flex) {mo} at (0,48) size 7x4
     1701    RenderBlock (anonymous) at (0,0) size 7x4
     1702      RenderText {mo} at (0,-9) size 7x21
     1703        text run at (0,-9) width 7: "\x{23D0}"
     1704layer at (343,329) size 7x4 scrollHeight 12
     1705  RenderMathMLBlock (flex) {mo} at (0,52) size 7x4
     1706    RenderBlock (anonymous) at (0,0) size 7x4
     1707      RenderText {mo} at (0,-9) size 7x21
     1708        text run at (0,-9) width 7: "\x{23D0}"
     1709layer at (343,333) size 7x4 scrollHeight 12
     1710  RenderMathMLBlock (flex) {mo} at (0,56) size 7x4
     1711    RenderBlock (anonymous) at (0,0) size 7x4
     1712      RenderText {mo} at (0,-9) size 7x21
     1713        text run at (0,-9) width 7: "\x{23D0}"
     1714layer at (343,337) size 7x4 scrollHeight 12
     1715  RenderMathMLBlock (flex) {mo} at (0,60) size 7x4
     1716    RenderBlock (anonymous) at (0,0) size 7x4
     1717      RenderText {mo} at (0,-9) size 7x21
     1718        text run at (0,-9) width 7: "\x{23D0}"
     1719layer at (343,341) size 7x4 scrollHeight 12
     1720  RenderMathMLBlock (flex) {mo} at (0,64) size 7x4
     1721    RenderBlock (anonymous) at (0,0) size 7x4
     1722      RenderText {mo} at (0,-9) size 7x21
     1723        text run at (0,-9) width 7: "\x{23D0}"
     1724layer at (343,345) size 7x4 scrollHeight 12
     1725  RenderMathMLBlock (flex) {mo} at (0,68) size 7x4
     1726    RenderBlock (anonymous) at (0,0) size 7x4
     1727      RenderText {mo} at (0,-9) size 7x21
     1728        text run at (0,-9) width 7: "\x{23D0}"
    13151729layer at (343,349) size 7x4 scrollHeight 12
    1316   RenderMathMLBlock (block) {mo} at (0,4) size 7x4
    1317     RenderText {mo} at (0,-9) size 7x21
    1318       text run at (0,-9) width 7: "\x{23D0}"
     1730  RenderMathMLBlock (flex) {mo} at (0,72) size 7x4
     1731    RenderBlock (anonymous) at (0,0) size 7x4
     1732      RenderText {mo} at (0,-9) size 7x21
     1733        text run at (0,-9) width 7: "\x{23D0}"
    13191734layer at (343,353) size 7x4 scrollHeight 12
    1320   RenderMathMLBlock (block) {mo} at (0,8) size 7x4
    1321     RenderText {mo} at (0,-9) size 7x21
    1322       text run at (0,-9) width 7: "\x{23D0}"
     1735  RenderMathMLBlock (flex) {mo} at (0,76) size 7x4
     1736    RenderBlock (anonymous) at (0,0) size 7x4
     1737      RenderText {mo} at (0,-9) size 7x21
     1738        text run at (0,-9) width 7: "\x{23D0}"
    13231739layer at (343,357) size 7x4 scrollHeight 12
    1324   RenderMathMLBlock (block) {mo} at (0,12) size 7x4
    1325     RenderText {mo} at (0,-9) size 7x21
    1326       text run at (0,-9) width 7: "\x{23D0}"
     1740  RenderMathMLBlock (flex) {mo} at (0,80) size 7x4
     1741    RenderBlock (anonymous) at (0,0) size 7x4
     1742      RenderText {mo} at (0,-9) size 7x21
     1743        text run at (0,-9) width 7: "\x{23D0}"
    13271744layer at (343,361) size 7x4 scrollHeight 12
    1328   RenderMathMLBlock (block) {mo} at (0,16) size 7x4
    1329     RenderText {mo} at (0,-9) size 7x21
    1330       text run at (0,-9) width 7: "\x{23D0}"
     1745  RenderMathMLBlock (flex) {mo} at (0,84) size 7x4
     1746    RenderBlock (anonymous) at (0,0) size 7x4
     1747      RenderText {mo} at (0,-9) size 7x21
     1748        text run at (0,-9) width 7: "\x{23D0}"
    13311749layer at (343,365) size 7x4 scrollHeight 12
    1332   RenderMathMLBlock (block) {mo} at (0,20) size 7x4
    1333     RenderText {mo} at (0,-9) size 7x21
    1334       text run at (0,-9) width 7: "\x{23D0}"
     1750  RenderMathMLBlock (flex) {mo} at (0,88) size 7x4
     1751    RenderBlock (anonymous) at (0,0) size 7x4
     1752      RenderText {mo} at (0,-9) size 7x21
     1753        text run at (0,-9) width 7: "\x{23D0}"
    13351754layer at (343,369) size 7x4 scrollHeight 12
    1336   RenderMathMLBlock (block) {mo} at (0,24) size 7x4
    1337     RenderText {mo} at (0,-9) size 7x21
    1338       text run at (0,-9) width 7: "\x{23D0}"
     1755  RenderMathMLBlock (flex) {mo} at (0,92) size 7x4
     1756    RenderBlock (anonymous) at (0,0) size 7x4
     1757      RenderText {mo} at (0,-9) size 7x21
     1758        text run at (0,-9) width 7: "\x{23D0}"
    13391759layer at (343,373) size 7x4 scrollHeight 12
    1340   RenderMathMLBlock (block) {mo} at (0,28) size 7x4
    1341     RenderText {mo} at (0,-9) size 7x21
    1342       text run at (0,-9) width 7: "\x{23D0}"
     1760  RenderMathMLBlock (flex) {mo} at (0,96) size 7x4
     1761    RenderBlock (anonymous) at (0,0) size 7x4
     1762      RenderText {mo} at (0,-9) size 7x21
     1763        text run at (0,-9) width 7: "\x{23D0}"
    13431764layer at (343,377) size 7x4 scrollHeight 12
    1344   RenderMathMLBlock (block) {mo} at (0,32) size 7x4
    1345     RenderText {mo} at (0,-9) size 7x21
    1346       text run at (0,-9) width 7: "\x{23D0}"
     1765  RenderMathMLBlock (flex) {mo} at (0,100) size 7x4
     1766    RenderBlock (anonymous) at (0,0) size 7x4
     1767      RenderText {mo} at (0,-9) size 7x21
     1768        text run at (0,-9) width 7: "\x{23D0}"
    13471769layer at (343,381) size 7x4 scrollHeight 12
    1348   RenderMathMLBlock (block) {mo} at (0,36) size 7x4
    1349     RenderText {mo} at (0,-9) size 7x21
    1350       text run at (0,-9) width 7: "\x{23D0}"
     1770  RenderMathMLBlock (flex) {mo} at (0,104) size 7x4
     1771    RenderBlock (anonymous) at (0,0) size 7x4
     1772      RenderText {mo} at (0,-9) size 7x21
     1773        text run at (0,-9) width 7: "\x{23D0}"
    13511774layer at (343,385) size 7x4 scrollHeight 12
    1352   RenderMathMLBlock (block) {mo} at (0,40) size 7x4
    1353     RenderText {mo} at (0,-9) size 7x21
    1354       text run at (0,-9) width 7: "\x{23D0}"
     1775  RenderMathMLBlock (flex) {mo} at (0,108) size 7x4
     1776    RenderBlock (anonymous) at (0,0) size 7x4
     1777      RenderText {mo} at (0,-9) size 7x21
     1778        text run at (0,-9) width 7: "\x{23D0}"
    13551779layer at (343,389) size 7x4 scrollHeight 12
    1356   RenderMathMLBlock (block) {mo} at (0,44) size 7x4
    1357     RenderText {mo} at (0,-9) size 7x21
    1358       text run at (0,-9) width 7: "\x{23D0}"
     1780  RenderMathMLBlock (flex) {mo} at (0,112) size 7x4
     1781    RenderBlock (anonymous) at (0,0) size 7x4
     1782      RenderText {mo} at (0,-9) size 7x21
     1783        text run at (0,-9) width 7: "\x{23D0}"
    13591784layer at (343,393) size 7x4 scrollHeight 12
    1360   RenderMathMLBlock (block) {mo} at (0,48) size 7x4
    1361     RenderText {mo} at (0,-9) size 7x21
    1362       text run at (0,-9) width 7: "\x{23D0}"
     1785  RenderMathMLBlock (flex) {mo} at (0,116) size 7x4
     1786    RenderBlock (anonymous) at (0,0) size 7x4
     1787      RenderText {mo} at (0,-9) size 7x21
     1788        text run at (0,-9) width 7: "\x{23D0}"
    13631789layer at (343,397) size 7x4 scrollHeight 12
    1364   RenderMathMLBlock (block) {mo} at (0,52) size 7x4
    1365     RenderText {mo} at (0,-9) size 7x21
    1366       text run at (0,-9) width 7: "\x{23D0}"
     1790  RenderMathMLBlock (flex) {mo} at (0,120) size 7x4
     1791    RenderBlock (anonymous) at (0,0) size 7x4
     1792      RenderText {mo} at (0,-9) size 7x21
     1793        text run at (0,-9) width 7: "\x{23D0}"
    13671794layer at (343,401) size 7x4 scrollHeight 12
    1368   RenderMathMLBlock (block) {mo} at (0,56) size 7x4
    1369     RenderText {mo} at (0,-9) size 7x21
    1370       text run at (0,-9) width 7: "\x{23D0}"
     1795  RenderMathMLBlock (flex) {mo} at (0,124) size 7x4
     1796    RenderBlock (anonymous) at (0,0) size 7x4
     1797      RenderText {mo} at (0,-9) size 7x21
     1798        text run at (0,-9) width 7: "\x{23D0}"
    13711799layer at (343,405) size 7x4 scrollHeight 12
    1372   RenderMathMLBlock (block) {mo} at (0,60) size 7x4
    1373     RenderText {mo} at (0,-9) size 7x21
    1374       text run at (0,-9) width 7: "\x{23D0}"
     1800  RenderMathMLBlock (flex) {mo} at (0,128) size 7x4
     1801    RenderBlock (anonymous) at (0,0) size 7x4
     1802      RenderText {mo} at (0,-9) size 7x21
     1803        text run at (0,-9) width 7: "\x{23D0}"
    13751804layer at (343,409) size 7x4 scrollHeight 12
    1376   RenderMathMLBlock (block) {mo} at (0,64) size 7x4
    1377     RenderText {mo} at (0,-9) size 7x21
    1378       text run at (0,-9) width 7: "\x{23D0}"
     1805  RenderMathMLBlock (flex) {mo} at (0,132) size 7x4
     1806    RenderBlock (anonymous) at (0,0) size 7x4
     1807      RenderText {mo} at (0,-9) size 7x21
     1808        text run at (0,-9) width 7: "\x{23D0}"
    13791809layer at (343,413) size 7x4 scrollHeight 12
    1380   RenderMathMLBlock (block) {mo} at (0,68) size 7x4
    1381     RenderText {mo} at (0,-9) size 7x21
    1382       text run at (0,-9) width 7: "\x{23D0}"
    1383 layer at (343,417) size 7x4 scrollHeight 12
    1384   RenderMathMLBlock (block) {mo} at (0,72) size 7x4
    1385     RenderText {mo} at (0,-9) size 7x21
    1386       text run at (0,-9) width 7: "\x{23D0}"
    1387 layer at (343,421) size 7x4 scrollHeight 12
    1388   RenderMathMLBlock (block) {mo} at (0,76) size 7x4
    1389     RenderText {mo} at (0,-9) size 7x21
    1390       text run at (0,-9) width 7: "\x{23D0}"
    1391 layer at (343,425) size 7x4 scrollHeight 12
    1392   RenderMathMLBlock (block) {mo} at (0,80) size 7x4
    1393     RenderText {mo} at (0,-9) size 7x21
    1394       text run at (0,-9) width 7: "\x{23D0}"
    1395 layer at (343,429) size 7x4 scrollHeight 12
    1396   RenderMathMLBlock (block) {mo} at (0,84) size 7x4
    1397     RenderText {mo} at (0,-9) size 7x21
    1398       text run at (0,-9) width 7: "\x{23D0}"
    1399 layer at (343,433) size 7x4 scrollHeight 12
    1400   RenderMathMLBlock (block) {mo} at (0,88) size 7x4
    1401     RenderText {mo} at (0,-9) size 7x21
    1402       text run at (0,-9) width 7: "\x{23D0}"
    1403 layer at (343,437) size 7x4 scrollHeight 12
    1404   RenderMathMLBlock (block) {mo} at (0,92) size 7x4
    1405     RenderText {mo} at (0,-9) size 7x21
    1406       text run at (0,-9) width 7: "\x{23D0}"
    1407 layer at (343,441) size 7x4 scrollHeight 12
    1408   RenderMathMLBlock (block) {mo} at (0,96) size 7x4
    1409     RenderText {mo} at (0,-9) size 7x21
    1410       text run at (0,-9) width 7: "\x{23D0}"
    1411 layer at (343,445) size 7x4 scrollHeight 12
    1412   RenderMathMLBlock (block) {mo} at (0,100) size 7x4
    1413     RenderText {mo} at (0,-9) size 7x21
    1414       text run at (0,-9) width 7: "\x{23D0}"
    1415 layer at (343,449) size 7x4 scrollHeight 12
    1416   RenderMathMLBlock (block) {mo} at (0,104) size 7x4
    1417     RenderText {mo} at (0,-9) size 7x21
    1418       text run at (0,-9) width 7: "\x{23D0}"
    1419 layer at (343,453) size 7x4 scrollHeight 12
    1420   RenderMathMLBlock (block) {mo} at (0,108) size 7x4
    1421     RenderText {mo} at (0,-9) size 7x21
    1422       text run at (0,-9) width 7: "\x{23D0}"
    1423 layer at (343,457) size 7x4 scrollHeight 12
    1424   RenderMathMLBlock (block) {mo} at (0,112) size 7x4
    1425     RenderText {mo} at (0,-9) size 7x21
    1426       text run at (0,-9) width 7: "\x{23D0}"
    1427 layer at (343,461) size 7x4 scrollHeight 12
    1428   RenderMathMLBlock (block) {mo} at (0,116) size 7x4
    1429     RenderText {mo} at (0,-9) size 7x21
    1430       text run at (0,-9) width 7: "\x{23D0}"
    1431 layer at (343,465) size 7x4 scrollHeight 12
    1432   RenderMathMLBlock (block) {mo} at (0,120) size 7x4
    1433     RenderText {mo} at (0,-9) size 7x21
    1434       text run at (0,-9) width 7: "\x{23D0}"
    1435 layer at (343,469) size 7x4 scrollHeight 12
    1436   RenderMathMLBlock (block) {mo} at (0,124) size 7x4
    1437     RenderText {mo} at (0,-9) size 7x21
    1438       text run at (0,-9) width 7: "\x{23D0}"
    1439 layer at (343,473) size 7x4 scrollHeight 12
    1440   RenderMathMLBlock (block) {mo} at (0,128) size 7x4
    1441     RenderText {mo} at (0,-9) size 7x21
    1442       text run at (0,-9) width 7: "\x{23D0}"
    1443 layer at (343,477) size 7x4 scrollHeight 12
    1444   RenderMathMLBlock (block) {mo} at (0,132) size 7x4
    1445     RenderText {mo} at (0,-9) size 7x21
    1446       text run at (0,-9) width 7: "\x{23D0}"
    1447 layer at (343,481) size 7x4 scrollHeight 12
    1448   RenderMathMLBlock (block) {mo} at (0,136) size 7x4
    1449     RenderText {mo} at (0,-9) size 7x21
    1450       text run at (0,-9) width 7: "\x{23D0}"
    1451 layer at (343,485) size 7x7 scrollHeight 12
    1452   RenderMathMLBlock (block) {mo} at (0,140) size 7x7
    1453 layer at (357,345) size 10x10 scrollHeight 18
    1454   RenderMathMLBlock (block) {mo} at (0,0) size 10x10
    1455 layer at (357,355) size 10x10 scrollHeight 17
    1456   RenderMathMLBlock (block) {mo} at (0,10) size 10x10
    1457     RenderText {mo} at (0,-4) size 10x21
    1458       text run at (0,-4) width 10: "\x{23AE}"
    1459 layer at (357,365) size 10x10 scrollHeight 17
    1460   RenderMathMLBlock (block) {mo} at (0,20) size 10x10
    1461     RenderText {mo} at (0,-4) size 10x21
    1462       text run at (0,-4) width 10: "\x{23AE}"
    1463 layer at (357,375) size 10x10 scrollHeight 17
    1464   RenderMathMLBlock (block) {mo} at (0,30) size 10x10
    1465     RenderText {mo} at (0,-4) size 10x21
    1466       text run at (0,-4) width 10: "\x{23AE}"
    1467 layer at (357,385) size 10x10 scrollHeight 17
    1468   RenderMathMLBlock (block) {mo} at (0,40) size 10x10
    1469     RenderText {mo} at (0,-4) size 10x21
    1470       text run at (0,-4) width 10: "\x{23AE}"
    1471 layer at (357,395) size 10x10 scrollHeight 17
    1472   RenderMathMLBlock (block) {mo} at (0,50) size 10x10
    1473     RenderText {mo} at (0,-4) size 10x21
    1474       text run at (0,-4) width 10: "\x{23AE}"
    1475 layer at (357,405) size 10x10 scrollHeight 17
    1476   RenderMathMLBlock (block) {mo} at (0,60) size 10x10
    1477     RenderText {mo} at (0,-4) size 10x21
    1478       text run at (0,-4) width 10: "\x{23AE}"
    1479 layer at (357,415) size 10x10 scrollHeight 17
    1480   RenderMathMLBlock (block) {mo} at (0,70) size 10x10
    1481     RenderText {mo} at (0,-4) size 10x21
    1482       text run at (0,-4) width 10: "\x{23AE}"
    1483 layer at (357,425) size 10x10 scrollHeight 17
    1484   RenderMathMLBlock (block) {mo} at (0,80) size 10x10
    1485     RenderText {mo} at (0,-4) size 10x21
    1486       text run at (0,-4) width 10: "\x{23AE}"
    1487 layer at (357,435) size 10x10 scrollHeight 17
    1488   RenderMathMLBlock (block) {mo} at (0,90) size 10x10
    1489     RenderText {mo} at (0,-4) size 10x21
    1490       text run at (0,-4) width 10: "\x{23AE}"
    1491 layer at (357,445) size 10x10 scrollHeight 17
    1492   RenderMathMLBlock (block) {mo} at (0,100) size 10x10
    1493     RenderText {mo} at (0,-4) size 10x21
    1494       text run at (0,-4) width 10: "\x{23AE}"
    1495 layer at (357,455) size 10x10 scrollHeight 17
    1496   RenderMathMLBlock (block) {mo} at (0,110) size 10x10
    1497     RenderText {mo} at (0,-4) size 10x21
    1498       text run at (0,-4) width 10: "\x{23AE}"
    1499 layer at (357,465) size 10x10 scrollHeight 17
    1500   RenderMathMLBlock (block) {mo} at (0,120) size 10x10
    1501     RenderText {mo} at (0,-4) size 10x21
    1502       text run at (0,-4) width 10: "\x{23AE}"
    1503 layer at (357,475) size 10x4 scrollHeight 17
    1504   RenderMathMLBlock (block) {mo} at (0,130) size 10x4
    1505     RenderText {mo} at (0,-4) size 10x21
    1506       text run at (0,-4) width 10: "\x{23AE}"
    1507 layer at (357,479) size 10x15 scrollHeight 17
    1508   RenderMathMLBlock (block) {mo} at (0,134) size 10x15
    1509 layer at (9,522) size 5x10 scrollHeight 18
    1510   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    1511 layer at (9,532) size 5x10 scrollHeight 17
    1512   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    1513     RenderText {mo} at (0,-4) size 5x21
    1514       text run at (0,-4) width 5: "\x{239C}"
    1515 layer at (9,542) size 5x10 scrollHeight 17
    1516   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    1517     RenderText {mo} at (0,-4) size 5x21
    1518       text run at (0,-4) width 5: "\x{239C}"
    1519 layer at (9,552) size 5x8 scrollHeight 17
    1520   RenderMathMLBlock (block) {mo} at (0,30) size 5x8
    1521     RenderText {mo} at (0,-4) size 5x21
    1522       text run at (0,-4) width 5: "\x{239C}"
    1523 layer at (9,560) size 5x14 scrollHeight 17
    1524   RenderMathMLBlock (block) {mo} at (0,38) size 5x14
    1525 layer at (157,522) size 5x10 scrollHeight 18
    1526   RenderMathMLBlock (block) {mo} at (0,0) size 5x10
    1527 layer at (157,532) size 5x10 scrollHeight 17
    1528   RenderMathMLBlock (block) {mo} at (0,10) size 5x10
    1529     RenderText {mo} at (0,-4) size 5x21
    1530       text run at (0,-4) width 5: "\x{239F}"
    1531 layer at (157,542) size 5x10 scrollHeight 17
    1532   RenderMathMLBlock (block) {mo} at (0,20) size 5x10
    1533     RenderText {mo} at (0,-4) size 5x21
    1534       text run at (0,-4) width 5: "\x{239F}"
    1535 layer at (157,552) size 5x8 scrollHeight 17
    1536   RenderMathMLBlock (block) {mo} at (0,30) size 5x8
    1537     RenderText {mo} at (0,-4) size 5x21
    1538       text run at (0,-4) width 5: "\x{239F}"
    1539 layer at (157,560) size 5x14 scrollHeight 17
    1540   RenderMathMLBlock (block) {mo} at (0,38) size 5x14
    1541 layer at (49,98) size 7x15 backgroundClip at (49,97) size 7x9 clip at (49,97) size 7x9 outlineClip at (49,97) size 7x9
     1810  RenderMathMLBlock (flex) {mo} at (0,136) size 7x4
     1811    RenderBlock (anonymous) at (0,0) size 7x4
     1812      RenderText {mo} at (0,-9) size 7x21
     1813        text run at (0,-9) width 7: "\x{23D0}"
     1814layer at (343,417) size 7x7 scrollHeight 12
     1815  RenderMathMLBlock (flex) {mo} at (0,140) size 7x7
     1816    RenderBlock (anonymous) at (0,0) size 7x7
     1817layer at (357,277) size 10x10 scrollHeight 18
     1818  RenderMathMLBlock (flex) {mo} at (0,0) size 10x10
     1819    RenderBlock (anonymous) at (0,0) size 10x10
     1820layer at (357,287) size 10x10 scrollHeight 17
     1821  RenderMathMLBlock (flex) {mo} at (0,10) size 10x10
     1822    RenderBlock (anonymous) at (0,0) size 10x10
     1823      RenderText {mo} at (0,-4) size 10x21
     1824        text run at (0,-4) width 10: "\x{23AE}"
     1825layer at (357,297) size 10x10 scrollHeight 17
     1826  RenderMathMLBlock (flex) {mo} at (0,20) size 10x10
     1827    RenderBlock (anonymous) at (0,0) size 10x10
     1828      RenderText {mo} at (0,-4) size 10x21
     1829        text run at (0,-4) width 10: "\x{23AE}"
     1830layer at (357,307) size 10x10 scrollHeight 17
     1831  RenderMathMLBlock (flex) {mo} at (0,30) size 10x10
     1832    RenderBlock (anonymous) at (0,0) size 10x10
     1833      RenderText {mo} at (0,-4) size 10x21
     1834        text run at (0,-4) width 10: "\x{23AE}"
     1835layer at (357,317) size 10x10 scrollHeight 17
     1836  RenderMathMLBlock (flex) {mo} at (0,40) size 10x10
     1837    RenderBlock (anonymous) at (0,0) size 10x10
     1838      RenderText {mo} at (0,-4) size 10x21
     1839        text run at (0,-4) width 10: "\x{23AE}"
     1840layer at (357,327) size 10x10 scrollHeight 17
     1841  RenderMathMLBlock (flex) {mo} at (0,50) size 10x10
     1842    RenderBlock (anonymous) at (0,0) size 10x10
     1843      RenderText {mo} at (0,-4) size 10x21
     1844        text run at (0,-4) width 10: "\x{23AE}"
     1845layer at (357,337) size 10x10 scrollHeight 17
     1846  RenderMathMLBlock (flex) {mo} at (0,60) size 10x10
     1847    RenderBlock (anonymous) at (0,0) size 10x10
     1848      RenderText {mo} at (0,-4) size 10x21
     1849        text run at (0,-4) width 10: "\x{23AE}"
     1850layer at (357,347) size 10x10 scrollHeight 17
     1851  RenderMathMLBlock (flex) {mo} at (0,70) size 10x10
     1852    RenderBlock (anonymous) at (0,0) size 10x10
     1853      RenderText {mo} at (0,-4) size 10x21
     1854        text run at (0,-4) width 10: "\x{23AE}"
     1855layer at (357,357) size 10x10 scrollHeight 17
     1856  RenderMathMLBlock (flex) {mo} at (0,80) size 10x10
     1857    RenderBlock (anonymous) at (0,0) size 10x10
     1858      RenderText {mo} at (0,-4) size 10x21
     1859        text run at (0,-4) width 10: "\x{23AE}"
     1860layer at (357,367) size 10x10 scrollHeight 17
     1861  RenderMathMLBlock (flex) {mo} at (0,90) size 10x10
     1862    RenderBlock (anonymous) at (0,0) size 10x10
     1863      RenderText {mo} at (0,-4) size 10x21
     1864        text run at (0,-4) width 10: "\x{23AE}"
     1865layer at (357,377) size 10x10 scrollHeight 17
     1866  RenderMathMLBlock (flex) {mo} at (0,100) size 10x10
     1867    RenderBlock (anonymous) at (0,0) size 10x10
     1868      RenderText {mo} at (0,-4) size 10x21
     1869        text run at (0,-4) width 10: "\x{23AE}"
     1870layer at (357,387) size 10x10 scrollHeight 17
     1871  RenderMathMLBlock (flex) {mo} at (0,110) size 10x10
     1872    RenderBlock (anonymous) at (0,0) size 10x10
     1873      RenderText {mo} at (0,-4) size 10x21
     1874        text run at (0,-4) width 10: "\x{23AE}"
     1875layer at (357,397) size 10x10 scrollHeight 17
     1876  RenderMathMLBlock (flex) {mo} at (0,120) size 10x10
     1877    RenderBlock (anonymous) at (0,0) size 10x10
     1878      RenderText {mo} at (0,-4) size 10x21
     1879        text run at (0,-4) width 10: "\x{23AE}"
     1880layer at (357,407) size 10x4 scrollHeight 17
     1881  RenderMathMLBlock (flex) {mo} at (0,130) size 10x4
     1882    RenderBlock (anonymous) at (0,0) size 10x4
     1883      RenderText {mo} at (0,-4) size 10x21
     1884        text run at (0,-4) width 10: "\x{23AE}"
     1885layer at (357,411) size 10x15 scrollHeight 17
     1886  RenderMathMLBlock (flex) {mo} at (0,134) size 10x15
     1887    RenderBlock (anonymous) at (0,0) size 10x15
     1888layer at (49,442) size 5x10 scrollHeight 18
     1889  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     1890    RenderBlock (anonymous) at (0,0) size 5x10
     1891layer at (49,452) size 5x10 scrollHeight 17
     1892  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     1893    RenderBlock (anonymous) at (0,0) size 5x10
     1894      RenderText {mo} at (0,-4) size 5x21
     1895        text run at (0,-4) width 5: "\x{239C}"
     1896layer at (49,462) size 5x10 scrollHeight 17
     1897  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     1898    RenderBlock (anonymous) at (0,0) size 5x10
     1899      RenderText {mo} at (0,-4) size 5x21
     1900        text run at (0,-4) width 5: "\x{239C}"
     1901layer at (49,472) size 5x8 scrollHeight 17
     1902  RenderMathMLBlock (flex) {mo} at (0,30) size 5x8
     1903    RenderBlock (anonymous) at (0,0) size 5x8
     1904      RenderText {mo} at (0,-4) size 5x21
     1905        text run at (0,-4) width 5: "\x{239C}"
     1906layer at (49,480) size 5x14 scrollHeight 17
     1907  RenderMathMLBlock (flex) {mo} at (0,38) size 5x14
     1908    RenderBlock (anonymous) at (0,0) size 5x14
     1909layer at (197,442) size 5x10 scrollHeight 18
     1910  RenderMathMLBlock (flex) {mo} at (0,0) size 5x10
     1911    RenderBlock (anonymous) at (0,0) size 5x10
     1912layer at (197,452) size 5x10 scrollHeight 17
     1913  RenderMathMLBlock (flex) {mo} at (0,10) size 5x10
     1914    RenderBlock (anonymous) at (0,0) size 5x10
     1915      RenderText {mo} at (0,-4) size 5x21
     1916        text run at (0,-4) width 5: "\x{239F}"
     1917layer at (197,462) size 5x10 scrollHeight 17
     1918  RenderMathMLBlock (flex) {mo} at (0,20) size 5x10
     1919    RenderBlock (anonymous) at (0,0) size 5x10
     1920      RenderText {mo} at (0,-4) size 5x21
     1921        text run at (0,-4) width 5: "\x{239F}"
     1922layer at (197,472) size 5x8 scrollHeight 17
     1923  RenderMathMLBlock (flex) {mo} at (0,30) size 5x8
     1924    RenderBlock (anonymous) at (0,0) size 5x8
     1925      RenderText {mo} at (0,-4) size 5x21
     1926        text run at (0,-4) width 5: "\x{239F}"
     1927layer at (197,480) size 5x14 scrollHeight 17
     1928  RenderMathMLBlock (flex) {mo} at (0,38) size 5x14
     1929    RenderBlock (anonymous) at (0,0) size 5x14
     1930layer at (49,91) size 7x15 backgroundClip at (49,90) size 7x9 clip at (49,90) size 7x9 outlineClip at (49,90) size 7x9
    15421931  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    15431932    RenderText {mo} at (0,-4) size 7x21
    15441933      text run at (0,-4) width 7: "\x{23A7}"
    1545 layer at (49,105) size 7x15 backgroundClip at (49,106) size 7x10 clip at (49,106) size 7x10 outlineClip at (49,106) size 7x10
     1934layer at (49,98) size 7x15 backgroundClip at (49,99) size 7x10 clip at (49,99) size 7x10 outlineClip at (49,99) size 7x10
    15461935  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    15471936    RenderText {mo} at (0,-4) size 7x21
    15481937      text run at (0,-4) width 7: "\x{23A8}"
    1549 layer at (49,113) size 7x15 backgroundClip at (49,116) size 7x15 clip at (49,116) size 7x15 outlineClip at (49,116) size 7x15
     1938layer at (49,106) size 7x15 backgroundClip at (49,109) size 7x15 clip at (49,109) size 7x15 outlineClip at (49,109) size 7x15
    15501939  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    15511940    RenderText {mo} at (0,-4) size 7x21
    15521941      text run at (0,-4) width 7: "\x{23A9}"
    1553 layer at (88,98) size 7x15 backgroundClip at (88,97) size 7x9 clip at (88,97) size 7x9 outlineClip at (88,97) size 7x9
     1942layer at (88,91) size 7x15 backgroundClip at (88,90) size 7x9 clip at (88,90) size 7x9 outlineClip at (88,90) size 7x9
    15541943  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    15551944    RenderText {mo} at (0,-4) size 7x21
    15561945      text run at (0,-4) width 7: "\x{23AB}"
    1557 layer at (88,105) size 7x15 backgroundClip at (88,106) size 7x10 clip at (88,106) size 7x10 outlineClip at (88,106) size 7x10
     1946layer at (88,98) size 7x15 backgroundClip at (88,99) size 7x10 clip at (88,99) size 7x10 outlineClip at (88,99) size 7x10
    15581947  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    15591948    RenderText {mo} at (0,-4) size 7x21
    15601949      text run at (0,-4) width 7: "\x{23AC}"
    1561 layer at (88,113) size 7x15 backgroundClip at (88,116) size 7x15 clip at (88,116) size 7x15 outlineClip at (88,116) size 7x15
     1950layer at (88,106) size 7x15 backgroundClip at (88,109) size 7x15 clip at (88,109) size 7x15 outlineClip at (88,109) size 7x15
    15621951  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    15631952    RenderText {mo} at (0,-4) size 7x21
    15641953      text run at (0,-4) width 7: "\x{23AD}"
    1565 layer at (102,98) size 5x15 backgroundClip at (102,97) size 5x10 clip at (102,97) size 5x10 outlineClip at (102,97) size 5x10
     1954layer at (102,91) size 5x15 backgroundClip at (102,90) size 5x10 clip at (102,90) size 5x10 outlineClip at (102,90) size 5x10
    15661955  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    15671956    RenderText {mo} at (0,-4) size 5x21
    15681957      text run at (0,-4) width 5: "\x{23A1}"
    1569 layer at (102,112) size 5x15 backgroundClip at (102,115) size 5x15 clip at (102,115) size 5x15 outlineClip at (102,115) size 5x15
     1958layer at (102,105) size 5x15 backgroundClip at (102,108) size 5x15 clip at (102,108) size 5x15 outlineClip at (102,108) size 5x15
    15701959  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    15711960    RenderText {mo} at (0,-4) size 5x21
    15721961      text run at (0,-4) width 5: "\x{23A3}"
    1573 layer at (139,98) size 5x15 backgroundClip at (139,97) size 5x10 clip at (139,97) size 5x10 outlineClip at (139,97) size 5x10
     1962layer at (139,91) size 5x15 backgroundClip at (139,90) size 5x10 clip at (139,90) size 5x10 outlineClip at (139,90) size 5x10
    15741963  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    15751964    RenderText {mo} at (0,-4) size 5x21
    15761965      text run at (0,-4) width 5: "\x{23A4}"
    1577 layer at (139,112) size 5x15 backgroundClip at (139,115) size 5x15 clip at (139,115) size 5x15 outlineClip at (139,115) size 5x15
     1966layer at (139,105) size 5x15 backgroundClip at (139,108) size 5x15 clip at (139,108) size 5x15 outlineClip at (139,108) size 5x15
    15781967  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    15791968    RenderText {mo} at (0,-4) size 5x21
    15801969      text run at (0,-4) width 5: "\x{23A6}"
    1581 layer at (151,98) size 5x15 backgroundClip at (151,97) size 5x10 clip at (151,97) size 5x10 outlineClip at (151,97) size 5x10
     1970layer at (151,91) size 5x15 backgroundClip at (151,90) size 5x10 clip at (151,90) size 5x10 outlineClip at (151,90) size 5x10
    15821971  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    15831972    RenderText {mo} at (0,-4) size 5x21
    15841973      text run at (0,-4) width 5: "\x{239B}"
    1585 layer at (151,112) size 5x14 backgroundClip at (151,115) size 5x14 clip at (151,115) size 5x14 outlineClip at (151,115) size 5x14
     1974layer at (151,105) size 5x14 backgroundClip at (151,108) size 5x14 clip at (151,108) size 5x14 outlineClip at (151,108) size 5x14
    15861975  RenderBlock (relative positioned) {mo} at (0,0) size 5x14
    15871976    RenderText {mo} at (0,-4) size 5x21
    15881977      text run at (0,-4) width 5: "\x{239D}"
    1589 layer at (188,98) size 5x15 backgroundClip at (188,97) size 5x10 clip at (188,97) size 5x10 outlineClip at (188,97) size 5x10
     1978layer at (188,91) size 5x15 backgroundClip at (188,90) size 5x10 clip at (188,90) size 5x10 outlineClip at (188,90) size 5x10
    15901979  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    15911980    RenderText {mo} at (0,-4) size 5x21
    15921981      text run at (0,-4) width 5: "\x{239E}"
    1593 layer at (188,112) size 5x14 backgroundClip at (188,115) size 5x14 clip at (188,115) size 5x14 outlineClip at (188,115) size 5x14
     1982layer at (188,105) size 5x14 backgroundClip at (188,108) size 5x14 clip at (188,108) size 5x14 outlineClip at (188,108) size 5x14
    15941983  RenderBlock (relative positioned) {mo} at (0,0) size 5x14
    15951984    RenderText {mo} at (0,-4) size 5x21
    15961985      text run at (0,-4) width 5: "\x{23A0}"
    1597 layer at (200,98) size 7x7 backgroundClip at (200,97) size 7x4 clip at (200,97) size 7x4 outlineClip at (200,97) size 7x4
     1986layer at (200,91) size 7x7 backgroundClip at (200,90) size 7x4 clip at (200,90) size 7x4 outlineClip at (200,90) size 7x4
    15981987  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    15991988    RenderText {mo} at (0,-9) size 7x21
    16001989      text run at (0,-9) width 7: "\x{23D0}"
    1601 layer at (200,118) size 7x7 backgroundClip at (200,121) size 7x7 clip at (200,121) size 7x7 outlineClip at (200,121) size 7x7
     1990layer at (200,111) size 7x7 backgroundClip at (200,114) size 7x7 clip at (200,114) size 7x7 outlineClip at (200,114) size 7x7
    16021991  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    16031992    RenderText {mo} at (0,-9) size 7x21
    16041993      text run at (0,-9) width 7: "\x{23D0}"
    1605 layer at (239,98) size 7x7 backgroundClip at (239,97) size 7x4 clip at (239,97) size 7x4 outlineClip at (239,97) size 7x4
     1994layer at (239,91) size 7x7 backgroundClip at (239,90) size 7x4 clip at (239,90) size 7x4 outlineClip at (239,90) size 7x4
    16061995  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    16071996    RenderText {mo} at (0,-9) size 7x21
    16081997      text run at (0,-9) width 7: "\x{23D0}"
    1609 layer at (239,118) size 7x7 backgroundClip at (239,121) size 7x7 clip at (239,121) size 7x7 outlineClip at (239,121) size 7x7
     1998layer at (239,111) size 7x7 backgroundClip at (239,114) size 7x7 clip at (239,114) size 7x7 outlineClip at (239,114) size 7x7
    16101999  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    16112000    RenderText {mo} at (0,-9) size 7x21
    16122001      text run at (0,-9) width 7: "\x{23D0}"
    1613 layer at (253,98) size 10x15 backgroundClip at (253,97) size 10x10 clip at (253,97) size 10x10 outlineClip at (253,97) size 10x10
     2002layer at (253,91) size 10x15 backgroundClip at (253,90) size 10x10 clip at (253,90) size 10x10 outlineClip at (253,90) size 10x10
    16142003  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
    16152004    RenderText {mo} at (0,-4) size 10x21
    16162005      text run at (0,-4) width 10: "\x{2320}"
    1617 layer at (253,112) size 10x15 backgroundClip at (253,115) size 10x15 clip at (253,115) size 10x15 outlineClip at (253,115) size 10x15
     2006layer at (253,105) size 10x15 backgroundClip at (253,108) size 10x15 clip at (253,108) size 10x15 outlineClip at (253,108) size 10x15
    16182007  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
    16192008    RenderText {mo} at (0,-4) size 10x21
    16202009      text run at (0,-4) width 10: "\x{2321}"
    1621 layer at (49,158) size 7x15 backgroundClip at (49,157) size 7x10 clip at (49,157) size 7x10 outlineClip at (49,157) size 7x10
     2010layer at (49,141) size 7x15 backgroundClip at (49,140) size 7x10 clip at (49,140) size 7x10 outlineClip at (49,140) size 7x10
    16222011  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    16232012    RenderText {mo} at (0,-4) size 7x21
    16242013      text run at (0,-4) width 7: "\x{23A7}"
    1625 layer at (49,170) size 7x15 backgroundClip at (49,171) size 7x10 clip at (49,171) size 7x10 outlineClip at (49,171) size 7x10
     2014layer at (49,153) size 7x15 backgroundClip at (49,154) size 7x10 clip at (49,154) size 7x10 outlineClip at (49,154) size 7x10
    16262015  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    16272016    RenderText {mo} at (0,-4) size 7x21
    16282017      text run at (0,-4) width 7: "\x{23A8}"
    1629 layer at (49,182) size 7x15 backgroundClip at (49,185) size 7x15 clip at (49,185) size 7x15 outlineClip at (49,185) size 7x15
     2018layer at (49,165) size 7x15 backgroundClip at (49,168) size 7x15 clip at (49,168) size 7x15 outlineClip at (49,168) size 7x15
    16302019  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    16312020    RenderText {mo} at (0,-4) size 7x21
    16322021      text run at (0,-4) width 7: "\x{23A9}"
    1633 layer at (96,158) size 7x15 backgroundClip at (96,157) size 7x10 clip at (96,157) size 7x10 outlineClip at (96,157) size 7x10
     2022layer at (96,141) size 7x15 backgroundClip at (96,140) size 7x10 clip at (96,140) size 7x10 outlineClip at (96,140) size 7x10
    16342023  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    16352024    RenderText {mo} at (0,-4) size 7x21
    16362025      text run at (0,-4) width 7: "\x{23AB}"
    1637 layer at (96,170) size 7x15 backgroundClip at (96,171) size 7x10 clip at (96,171) size 7x10 outlineClip at (96,171) size 7x10
     2026layer at (96,153) size 7x15 backgroundClip at (96,154) size 7x10 clip at (96,154) size 7x10 outlineClip at (96,154) size 7x10
    16382027  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    16392028    RenderText {mo} at (0,-4) size 7x21
    16402029      text run at (0,-4) width 7: "\x{23AC}"
    1641 layer at (96,182) size 7x15 backgroundClip at (96,185) size 7x15 clip at (96,185) size 7x15 outlineClip at (96,185) size 7x15
     2030layer at (96,165) size 7x15 backgroundClip at (96,168) size 7x15 clip at (96,168) size 7x15 outlineClip at (96,168) size 7x15
    16422031  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    16432032    RenderText {mo} at (0,-4) size 7x21
    16442033      text run at (0,-4) width 7: "\x{23AD}"
    1645 layer at (110,158) size 5x15 backgroundClip at (110,157) size 5x10 clip at (110,157) size 5x10 outlineClip at (110,157) size 5x10
     2034layer at (110,141) size 5x15 backgroundClip at (110,140) size 5x10 clip at (110,140) size 5x10 outlineClip at (110,140) size 5x10
    16462035  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    16472036    RenderText {mo} at (0,-4) size 5x21
    16482037      text run at (0,-4) width 5: "\x{23A1}"
    1649 layer at (110,182) size 5x15 backgroundClip at (110,185) size 5x15 clip at (110,185) size 5x15 outlineClip at (110,185) size 5x15
     2038layer at (110,165) size 5x15 backgroundClip at (110,168) size 5x15 clip at (110,168) size 5x15 outlineClip at (110,168) size 5x15
    16502039  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    16512040    RenderText {mo} at (0,-4) size 5x21
    16522041      text run at (0,-4) width 5: "\x{23A3}"
    1653 layer at (155,158) size 5x15 backgroundClip at (155,157) size 5x10 clip at (155,157) size 5x10 outlineClip at (155,157) size 5x10
     2042layer at (155,141) size 5x15 backgroundClip at (155,140) size 5x10 clip at (155,140) size 5x10 outlineClip at (155,140) size 5x10
    16542043  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    16552044    RenderText {mo} at (0,-4) size 5x21
    16562045      text run at (0,-4) width 5: "\x{23A4}"
    1657 layer at (155,182) size 5x15 backgroundClip at (155,185) size 5x15 clip at (155,185) size 5x15 outlineClip at (155,185) size 5x15
     2046layer at (155,165) size 5x15 backgroundClip at (155,168) size 5x15 clip at (155,168) size 5x15 outlineClip at (155,168) size 5x15
    16582047  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    16592048    RenderText {mo} at (0,-4) size 5x21
    16602049      text run at (0,-4) width 5: "\x{23A6}"
    1661 layer at (167,158) size 5x15 backgroundClip at (167,157) size 5x10 clip at (167,157) size 5x10 outlineClip at (167,157) size 5x10
     2050layer at (167,141) size 5x15 backgroundClip at (167,140) size 5x10 clip at (167,140) size 5x10 outlineClip at (167,140) size 5x10
    16622051  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    16632052    RenderText {mo} at (0,-4) size 5x21
    16642053      text run at (0,-4) width 5: "\x{239B}"
    1665 layer at (167,182) size 5x14 backgroundClip at (167,185) size 5x14 clip at (167,185) size 5x14 outlineClip at (167,185) size 5x14
     2054layer at (167,165) size 5x14 backgroundClip at (167,168) size 5x14 clip at (167,168) size 5x14 outlineClip at (167,168) size 5x14
    16662055  RenderBlock (relative positioned) {mo} at (0,0) size 5x14
    16672056    RenderText {mo} at (0,-4) size 5x21
    16682057      text run at (0,-4) width 5: "\x{239D}"
    1669 layer at (212,158) size 5x15 backgroundClip at (212,157) size 5x10 clip at (212,157) size 5x10 outlineClip at (212,157) size 5x10
     2058layer at (212,141) size 5x15 backgroundClip at (212,140) size 5x10 clip at (212,140) size 5x10 outlineClip at (212,140) size 5x10
    16702059  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    16712060    RenderText {mo} at (0,-4) size 5x21
    16722061      text run at (0,-4) width 5: "\x{239E}"
    1673 layer at (212,182) size 5x14 backgroundClip at (212,185) size 5x14 clip at (212,185) size 5x14 outlineClip at (212,185) size 5x14
     2062layer at (212,165) size 5x14 backgroundClip at (212,168) size 5x14 clip at (212,168) size 5x14 outlineClip at (212,168) size 5x14
    16742063  RenderBlock (relative positioned) {mo} at (0,0) size 5x14
    16752064    RenderText {mo} at (0,-4) size 5x21
    16762065      text run at (0,-4) width 5: "\x{23A0}"
    1677 layer at (224,158) size 7x7 backgroundClip at (224,157) size 7x4 clip at (224,157) size 7x4 outlineClip at (224,157) size 7x4
     2066layer at (224,141) size 7x7 backgroundClip at (224,140) size 7x4 clip at (224,140) size 7x4 outlineClip at (224,140) size 7x4
    16782067  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    16792068    RenderText {mo} at (0,-9) size 7x21
    16802069      text run at (0,-9) width 7: "\x{23D0}"
    1681 layer at (224,188) size 7x7 backgroundClip at (224,191) size 7x7 clip at (224,191) size 7x7 outlineClip at (224,191) size 7x7
     2070layer at (224,171) size 7x7 backgroundClip at (224,174) size 7x7 clip at (224,174) size 7x7 outlineClip at (224,174) size 7x7
    16822071  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    16832072    RenderText {mo} at (0,-9) size 7x21
    16842073      text run at (0,-9) width 7: "\x{23D0}"
    1685 layer at (271,158) size 7x7 backgroundClip at (271,157) size 7x4 clip at (271,157) size 7x4 outlineClip at (271,157) size 7x4
     2074layer at (271,141) size 7x7 backgroundClip at (271,140) size 7x4 clip at (271,140) size 7x4 outlineClip at (271,140) size 7x4
    16862075  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    16872076    RenderText {mo} at (0,-9) size 7x21
    16882077      text run at (0,-9) width 7: "\x{23D0}"
    1689 layer at (271,188) size 7x7 backgroundClip at (271,191) size 7x7 clip at (271,191) size 7x7 outlineClip at (271,191) size 7x7
     2078layer at (271,171) size 7x7 backgroundClip at (271,174) size 7x7 clip at (271,174) size 7x7 outlineClip at (271,174) size 7x7
    16902079  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    16912080    RenderText {mo} at (0,-9) size 7x21
    16922081      text run at (0,-9) width 7: "\x{23D0}"
    1693 layer at (285,158) size 10x15 backgroundClip at (285,157) size 10x10 clip at (285,157) size 10x10 outlineClip at (285,157) size 10x10
     2082layer at (285,141) size 10x15 backgroundClip at (285,140) size 10x10 clip at (285,140) size 10x10 outlineClip at (285,140) size 10x10
    16942083  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
    16952084    RenderText {mo} at (0,-4) size 10x21
    16962085      text run at (0,-4) width 10: "\x{2320}"
    1697 layer at (285,182) size 10x15 backgroundClip at (285,185) size 10x15 clip at (285,185) size 10x15 outlineClip at (285,185) size 10x15
     2086layer at (285,165) size 10x15 backgroundClip at (285,168) size 10x15 clip at (285,168) size 10x15 outlineClip at (285,168) size 10x15
    16982087  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
    16992088    RenderText {mo} at (0,-4) size 10x21
    17002089      text run at (0,-4) width 10: "\x{2321}"
    1701 layer at (49,232) size 7x15 backgroundClip at (49,231) size 7x10 clip at (49,231) size 7x10 outlineClip at (49,231) size 7x10
     2090layer at (49,200) size 7x15 backgroundClip at (49,199) size 7x10 clip at (49,199) size 7x10 outlineClip at (49,199) size 7x10
    17022091  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    17032092    RenderText {mo} at (0,-4) size 7x21
    17042093      text run at (0,-4) width 7: "\x{23A7}"
    1705 layer at (49,253) size 7x15 backgroundClip at (49,254) size 7x10 clip at (49,254) size 7x10 outlineClip at (49,254) size 7x10
     2094layer at (49,221) size 7x15 backgroundClip at (49,222) size 7x10 clip at (49,222) size 7x10 outlineClip at (49,222) size 7x10
    17062095  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    17072096    RenderText {mo} at (0,-4) size 7x21
    17082097      text run at (0,-4) width 7: "\x{23A8}"
    1709 layer at (49,275) size 7x15 backgroundClip at (49,278) size 7x15 clip at (49,278) size 7x15 outlineClip at (49,278) size 7x15
     2098layer at (49,243) size 7x15 backgroundClip at (49,246) size 7x15 clip at (49,246) size 7x15 outlineClip at (49,246) size 7x15
    17102099  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    17112100    RenderText {mo} at (0,-4) size 7x21
    17122101      text run at (0,-4) width 7: "\x{23A9}"
    1713 layer at (112,232) size 7x15 backgroundClip at (112,231) size 7x10 clip at (112,231) size 7x10 outlineClip at (112,231) size 7x10
     2102layer at (112,200) size 7x15 backgroundClip at (112,199) size 7x10 clip at (112,199) size 7x10 outlineClip at (112,199) size 7x10
    17142103  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    17152104    RenderText {mo} at (0,-4) size 7x21
    17162105      text run at (0,-4) width 7: "\x{23AB}"
    1717 layer at (112,253) size 7x15 backgroundClip at (112,254) size 7x10 clip at (112,254) size 7x10 outlineClip at (112,254) size 7x10
     2106layer at (112,221) size 7x15 backgroundClip at (112,222) size 7x10 clip at (112,222) size 7x10 outlineClip at (112,222) size 7x10
    17182107  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    17192108    RenderText {mo} at (0,-4) size 7x21
    17202109      text run at (0,-4) width 7: "\x{23AC}"
    1721 layer at (112,275) size 7x15 backgroundClip at (112,278) size 7x15 clip at (112,278) size 7x15 outlineClip at (112,278) size 7x15
     2110layer at (112,243) size 7x15 backgroundClip at (112,246) size 7x15 clip at (112,246) size 7x15 outlineClip at (112,246) size 7x15
    17222111  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    17232112    RenderText {mo} at (0,-4) size 7x21
    17242113      text run at (0,-4) width 7: "\x{23AD}"
    1725 layer at (126,232) size 5x15 backgroundClip at (126,231) size 5x10 clip at (126,231) size 5x10 outlineClip at (126,231) size 5x10
     2114layer at (126,200) size 5x15 backgroundClip at (126,199) size 5x10 clip at (126,199) size 5x10 outlineClip at (126,199) size 5x10
    17262115  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    17272116    RenderText {mo} at (0,-4) size 5x21
    17282117      text run at (0,-4) width 5: "\x{23A1}"
    1729 layer at (126,275) size 5x15 backgroundClip at (126,278) size 5x15 clip at (126,278) size 5x15 outlineClip at (126,278) size 5x15
     2118layer at (126,243) size 5x15 backgroundClip at (126,246) size 5x15 clip at (126,246) size 5x15 outlineClip at (126,246) size 5x15
    17302119  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    17312120    RenderText {mo} at (0,-4) size 5x21
    17322121      text run at (0,-4) width 5: "\x{23A3}"
    1733 layer at (187,232) size 5x15 backgroundClip at (187,231) size 5x10 clip at (187,231) size 5x10 outlineClip at (187,231) size 5x10
     2122layer at (187,200) size 5x15 backgroundClip at (187,199) size 5x10 clip at (187,199) size 5x10 outlineClip at (187,199) size 5x10
    17342123  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    17352124    RenderText {mo} at (0,-4) size 5x21
    17362125      text run at (0,-4) width 5: "\x{23A4}"
    1737 layer at (187,275) size 5x15 backgroundClip at (187,278) size 5x15 clip at (187,278) size 5x15 outlineClip at (187,278) size 5x15
     2126layer at (187,243) size 5x15 backgroundClip at (187,246) size 5x15 clip at (187,246) size 5x15 outlineClip at (187,246) size 5x15
    17382127  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    17392128    RenderText {mo} at (0,-4) size 5x21
    17402129      text run at (0,-4) width 5: "\x{23A6}"
    1741 layer at (199,232) size 5x15 backgroundClip at (199,231) size 5x10 clip at (199,231) size 5x10 outlineClip at (199,231) size 5x10
     2130layer at (199,200) size 5x15 backgroundClip at (199,199) size 5x10 clip at (199,199) size 5x10 outlineClip at (199,199) size 5x10
    17422131  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    17432132    RenderText {mo} at (0,-4) size 5x21
    17442133      text run at (0,-4) width 5: "\x{239B}"
    1745 layer at (199,275) size 5x14 backgroundClip at (199,278) size 5x14 clip at (199,278) size 5x14 outlineClip at (199,278) size 5x14
     2134layer at (199,243) size 5x14 backgroundClip at (199,246) size 5x14 clip at (199,246) size 5x14 outlineClip at (199,246) size 5x14
    17462135  RenderBlock (relative positioned) {mo} at (0,0) size 5x14
    17472136    RenderText {mo} at (0,-4) size 5x21
    17482137      text run at (0,-4) width 5: "\x{239D}"
    1749 layer at (260,232) size 5x15 backgroundClip at (260,231) size 5x10 clip at (260,231) size 5x10 outlineClip at (260,231) size 5x10
     2138layer at (260,200) size 5x15 backgroundClip at (260,199) size 5x10 clip at (260,199) size 5x10 outlineClip at (260,199) size 5x10
    17502139  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    17512140    RenderText {mo} at (0,-4) size 5x21
    17522141      text run at (0,-4) width 5: "\x{239E}"
    1753 layer at (260,275) size 5x14 backgroundClip at (260,278) size 5x14 clip at (260,278) size 5x14 outlineClip at (260,278) size 5x14
     2142layer at (260,243) size 5x14 backgroundClip at (260,246) size 5x14 clip at (260,246) size 5x14 outlineClip at (260,246) size 5x14
    17542143  RenderBlock (relative positioned) {mo} at (0,0) size 5x14
    17552144    RenderText {mo} at (0,-4) size 5x21
    17562145      text run at (0,-4) width 5: "\x{23A0}"
    1757 layer at (272,232) size 7x7 backgroundClip at (272,231) size 7x4 clip at (272,231) size 7x4 outlineClip at (272,231) size 7x4
     2146layer at (272,200) size 7x7 backgroundClip at (272,199) size 7x4 clip at (272,199) size 7x4 outlineClip at (272,199) size 7x4
    17582147  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    17592148    RenderText {mo} at (0,-9) size 7x21
    17602149      text run at (0,-9) width 7: "\x{23D0}"
    1761 layer at (272,281) size 7x7 backgroundClip at (272,284) size 7x7 clip at (272,284) size 7x7 outlineClip at (272,284) size 7x7
     2150layer at (272,249) size 7x7 backgroundClip at (272,252) size 7x7 clip at (272,252) size 7x7 outlineClip at (272,252) size 7x7
    17622151  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    17632152    RenderText {mo} at (0,-9) size 7x21
    17642153      text run at (0,-9) width 7: "\x{23D0}"
    1765 layer at (335,232) size 7x7 backgroundClip at (335,231) size 7x4 clip at (335,231) size 7x4 outlineClip at (335,231) size 7x4
     2154layer at (335,200) size 7x7 backgroundClip at (335,199) size 7x4 clip at (335,199) size 7x4 outlineClip at (335,199) size 7x4
    17662155  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    17672156    RenderText {mo} at (0,-9) size 7x21
    17682157      text run at (0,-9) width 7: "\x{23D0}"
    1769 layer at (335,281) size 7x7 backgroundClip at (335,284) size 7x7 clip at (335,284) size 7x7 outlineClip at (335,284) size 7x7
     2158layer at (335,249) size 7x7 backgroundClip at (335,252) size 7x7 clip at (335,252) size 7x7 outlineClip at (335,252) size 7x7
    17702159  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    17712160    RenderText {mo} at (0,-9) size 7x21
    17722161      text run at (0,-9) width 7: "\x{23D0}"
    1773 layer at (349,232) size 10x15 backgroundClip at (349,231) size 10x10 clip at (349,231) size 10x10 outlineClip at (349,231) size 10x10
     2162layer at (349,200) size 10x15 backgroundClip at (349,199) size 10x10 clip at (349,199) size 10x10 outlineClip at (349,199) size 10x10
    17742163  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
    17752164    RenderText {mo} at (0,-4) size 10x21
    17762165      text run at (0,-4) width 10: "\x{2320}"
    1777 layer at (349,275) size 10x15 backgroundClip at (349,278) size 10x15 clip at (349,278) size 10x15 outlineClip at (349,278) size 10x15
     2166layer at (349,243) size 10x15 backgroundClip at (349,246) size 10x15 clip at (349,246) size 10x15 outlineClip at (349,246) size 10x15
    17782167  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
    17792168    RenderText {mo} at (0,-4) size 10x21
    17802169      text run at (0,-4) width 10: "\x{2321}"
    1781 layer at (57,346) size 7x15 backgroundClip at (57,345) size 7x10 clip at (57,345) size 7x10 outlineClip at (57,345) size 7x10
     2170layer at (57,278) size 7x15 backgroundClip at (57,277) size 7x10 clip at (57,277) size 7x10 outlineClip at (57,277) size 7x10
    17822171  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    17832172    RenderText {mo} at (0,-4) size 7x21
    17842173      text run at (0,-4) width 7: "\x{23A7}"
    1785 layer at (57,411) size 7x15 backgroundClip at (57,412) size 7x10 clip at (57,412) size 7x10 outlineClip at (57,412) size 7x10
     2174layer at (57,343) size 7x15 backgroundClip at (57,344) size 7x10 clip at (57,344) size 7x10 outlineClip at (57,344) size 7x10
    17862175  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    17872176    RenderText {mo} at (0,-4) size 7x21
    17882177      text run at (0,-4) width 7: "\x{23A8}"
    1789 layer at (57,476) size 7x15 backgroundClip at (57,479) size 7x15 clip at (57,479) size 7x15 outlineClip at (57,479) size 7x15
     2178layer at (57,408) size 7x15 backgroundClip at (57,411) size 7x15 clip at (57,411) size 7x15 outlineClip at (57,411) size 7x15
    17902179  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    17912180    RenderText {mo} at (0,-4) size 7x21
    17922181      text run at (0,-4) width 7: "\x{23A9}"
    1793 layer at (120,346) size 7x15 backgroundClip at (120,345) size 7x10 clip at (120,345) size 7x10 outlineClip at (120,345) size 7x10
     2182layer at (120,278) size 7x15 backgroundClip at (120,277) size 7x10 clip at (120,277) size 7x10 outlineClip at (120,277) size 7x10
    17942183  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    17952184    RenderText {mo} at (0,-4) size 7x21
    17962185      text run at (0,-4) width 7: "\x{23AB}"
    1797 layer at (120,411) size 7x15 backgroundClip at (120,412) size 7x10 clip at (120,412) size 7x10 outlineClip at (120,412) size 7x10
     2186layer at (120,343) size 7x15 backgroundClip at (120,344) size 7x10 clip at (120,344) size 7x10 outlineClip at (120,344) size 7x10
    17982187  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    17992188    RenderText {mo} at (0,-4) size 7x21
    18002189      text run at (0,-4) width 7: "\x{23AC}"
    1801 layer at (120,476) size 7x15 backgroundClip at (120,479) size 7x15 clip at (120,479) size 7x15 outlineClip at (120,479) size 7x15
     2190layer at (120,408) size 7x15 backgroundClip at (120,411) size 7x15 clip at (120,411) size 7x15 outlineClip at (120,411) size 7x15
    18022191  RenderBlock (relative positioned) {mo} at (0,0) size 7x15
    18032192    RenderText {mo} at (0,-4) size 7x21
    18042193      text run at (0,-4) width 7: "\x{23AD}"
    1805 layer at (134,346) size 5x15 backgroundClip at (134,345) size 5x10 clip at (134,345) size 5x10 outlineClip at (134,345) size 5x10
     2194layer at (134,278) size 5x15 backgroundClip at (134,277) size 5x10 clip at (134,277) size 5x10 outlineClip at (134,277) size 5x10
    18062195  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    18072196    RenderText {mo} at (0,-4) size 5x21
    18082197      text run at (0,-4) width 5: "\x{23A1}"
    1809 layer at (134,476) size 5x15 backgroundClip at (134,479) size 5x15 clip at (134,479) size 5x15 outlineClip at (134,479) size 5x15
     2198layer at (134,408) size 5x15 backgroundClip at (134,411) size 5x15 clip at (134,411) size 5x15 outlineClip at (134,411) size 5x15
    18102199  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    18112200    RenderText {mo} at (0,-4) size 5x21
    18122201      text run at (0,-4) width 5: "\x{23A3}"
    1813 layer at (195,346) size 5x15 backgroundClip at (195,345) size 5x10 clip at (195,345) size 5x10 outlineClip at (195,345) size 5x10
     2202layer at (195,278) size 5x15 backgroundClip at (195,277) size 5x10 clip at (195,277) size 5x10 outlineClip at (195,277) size 5x10
    18142203  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    18152204    RenderText {mo} at (0,-4) size 5x21
    18162205      text run at (0,-4) width 5: "\x{23A4}"
    1817 layer at (195,476) size 5x15 backgroundClip at (195,479) size 5x15 clip at (195,479) size 5x15 outlineClip at (195,479) size 5x15
     2206layer at (195,408) size 5x15 backgroundClip at (195,411) size 5x15 clip at (195,411) size 5x15 outlineClip at (195,411) size 5x15
    18182207  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    18192208    RenderText {mo} at (0,-4) size 5x21
    18202209      text run at (0,-4) width 5: "\x{23A6}"
    1821 layer at (207,346) size 5x15 backgroundClip at (207,345) size 5x10 clip at (207,345) size 5x10 outlineClip at (207,345) size 5x10
     2210layer at (207,278) size 5x15 backgroundClip at (207,277) size 5x10 clip at (207,277) size 5x10 outlineClip at (207,277) size 5x10
    18222211  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    18232212    RenderText {mo} at (0,-4) size 5x21
    18242213      text run at (0,-4) width 5: "\x{239B}"
    1825 layer at (207,476) size 5x14 backgroundClip at (207,479) size 5x14 clip at (207,479) size 5x14 outlineClip at (207,479) size 5x14
     2214layer at (207,408) size 5x14 backgroundClip at (207,411) size 5x14 clip at (207,411) size 5x14 outlineClip at (207,411) size 5x14
    18262215  RenderBlock (relative positioned) {mo} at (0,0) size 5x14
    18272216    RenderText {mo} at (0,-4) size 5x21
    18282217      text run at (0,-4) width 5: "\x{239D}"
    1829 layer at (268,346) size 5x15 backgroundClip at (268,345) size 5x10 clip at (268,345) size 5x10 outlineClip at (268,345) size 5x10
     2218layer at (268,278) size 5x15 backgroundClip at (268,277) size 5x10 clip at (268,277) size 5x10 outlineClip at (268,277) size 5x10
    18302219  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    18312220    RenderText {mo} at (0,-4) size 5x21
    18322221      text run at (0,-4) width 5: "\x{239E}"
    1833 layer at (268,476) size 5x14 backgroundClip at (268,479) size 5x14 clip at (268,479) size 5x14 outlineClip at (268,479) size 5x14
     2222layer at (268,408) size 5x14 backgroundClip at (268,411) size 5x14 clip at (268,411) size 5x14 outlineClip at (268,411) size 5x14
    18342223  RenderBlock (relative positioned) {mo} at (0,0) size 5x14
    18352224    RenderText {mo} at (0,-4) size 5x21
    18362225      text run at (0,-4) width 5: "\x{23A0}"
    1837 layer at (280,346) size 7x7 backgroundClip at (280,345) size 7x4 clip at (280,345) size 7x4 outlineClip at (280,345) size 7x4
     2226layer at (280,278) size 7x7 backgroundClip at (280,277) size 7x4 clip at (280,277) size 7x4 outlineClip at (280,277) size 7x4
    18382227  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    18392228    RenderText {mo} at (0,-9) size 7x21
    18402229      text run at (0,-9) width 7: "\x{23D0}"
    1841 layer at (280,482) size 7x7 backgroundClip at (280,485) size 7x7 clip at (280,485) size 7x7 outlineClip at (280,485) size 7x7
     2230layer at (280,414) size 7x7 backgroundClip at (280,417) size 7x7 clip at (280,417) size 7x7 outlineClip at (280,417) size 7x7
    18422231  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    18432232    RenderText {mo} at (0,-9) size 7x21
    18442233      text run at (0,-9) width 7: "\x{23D0}"
    1845 layer at (343,346) size 7x7 backgroundClip at (343,345) size 7x4 clip at (343,345) size 7x4 outlineClip at (343,345) size 7x4
     2234layer at (343,278) size 7x7 backgroundClip at (343,277) size 7x4 clip at (343,277) size 7x4 outlineClip at (343,277) size 7x4
    18462235  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    18472236    RenderText {mo} at (0,-9) size 7x21
    18482237      text run at (0,-9) width 7: "\x{23D0}"
    1849 layer at (343,482) size 7x7 backgroundClip at (343,485) size 7x7 clip at (343,485) size 7x7 outlineClip at (343,485) size 7x7
     2238layer at (343,414) size 7x7 backgroundClip at (343,417) size 7x7 clip at (343,417) size 7x7 outlineClip at (343,417) size 7x7
    18502239  RenderBlock (relative positioned) {mo} at (0,0) size 7x7
    18512240    RenderText {mo} at (0,-9) size 7x21
    18522241      text run at (0,-9) width 7: "\x{23D0}"
    1853 layer at (357,346) size 10x15 backgroundClip at (357,345) size 10x10 clip at (357,345) size 10x10 outlineClip at (357,345) size 10x10
     2242layer at (357,278) size 10x15 backgroundClip at (357,277) size 10x10 clip at (357,277) size 10x10 outlineClip at (357,277) size 10x10
    18542243  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
    18552244    RenderText {mo} at (0,-4) size 10x21
    18562245      text run at (0,-4) width 10: "\x{2320}"
    1857 layer at (357,476) size 10x15 backgroundClip at (357,479) size 10x15 clip at (357,479) size 10x15 outlineClip at (357,479) size 10x15
     2246layer at (357,408) size 10x15 backgroundClip at (357,411) size 10x15 clip at (357,411) size 10x15 outlineClip at (357,411) size 10x15
    18582247  RenderBlock (relative positioned) {mo} at (0,0) size 10x15
    18592248    RenderText {mo} at (0,-4) size 10x21
    18602249      text run at (0,-4) width 10: "\x{2321}"
    1861 layer at (9,523) size 5x15 backgroundClip at (9,522) size 5x10 clip at (9,522) size 5x10 outlineClip at (9,522) size 5x10
     2250layer at (49,443) size 5x15 backgroundClip at (49,442) size 5x10 clip at (49,442) size 5x10 outlineClip at (49,442) size 5x10
    18622251  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    18632252    RenderText {mo} at (0,-4) size 5x21
    18642253      text run at (0,-4) width 5: "\x{239B}"
    1865 layer at (9,557) size 5x14 backgroundClip at (9,560) size 5x14 clip at (9,560) size 5x14 outlineClip at (9,560) size 5x14
     2254layer at (49,477) size 5x14 backgroundClip at (49,480) size 5x14 clip at (49,480) size 5x14 outlineClip at (49,480) size 5x14
    18662255  RenderBlock (relative positioned) {mo} at (0,0) size 5x14
    18672256    RenderText {mo} at (0,-4) size 5x21
    18682257      text run at (0,-4) width 5: "\x{239D}"
    1869 layer at (157,523) size 5x15 backgroundClip at (157,522) size 5x10 clip at (157,522) size 5x10 outlineClip at (157,522) size 5x10
     2258layer at (197,443) size 5x15 backgroundClip at (197,442) size 5x10 clip at (197,442) size 5x10 outlineClip at (197,442) size 5x10
    18702259  RenderBlock (relative positioned) {mo} at (0,0) size 5x15
    18712260    RenderText {mo} at (0,-4) size 5x21
    18722261      text run at (0,-4) width 5: "\x{239E}"
    1873 layer at (157,557) size 5x14 backgroundClip at (157,560) size 5x14 clip at (157,560) size 5x14 outlineClip at (157,560) size 5x14
     2262layer at (197,477) size 5x14 backgroundClip at (197,480) size 5x14 clip at (197,480) size 5x14 outlineClip at (197,480) size 5x14
    18742263  RenderBlock (relative positioned) {mo} at (0,0) size 5x14
    18752264    RenderText {mo} at (0,-4) size 5x21
  • trunk/LayoutTests/platform/mac/mathml/presentation/style-expected.txt

    r124512 r128837  
    1111layer at (8,19) size 29x19
    1212  RenderMathMLMath {math} at (0,3) size 29x19 [padding: 0 1 0 1]
    13     RenderInline {mi} at (0,0) size 7x24
    14       RenderText {#text} at (1,-6) size 7x24
    15         text run at (1,-6) width 7: "x"
     13    RenderBlock {mi} at (1,3) size 7x9
     14      RenderText {#text} at (0,-9) size 7x24
     15        text run at (0,-9) width 7: "x"
    1616    RenderMathMLOperator {mo} at (8,2) size 12x10 [padding: 0 1 0 0]
    17       RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    18         RenderText {mo} at (0,-8) size 11x24
    19           text run at (0,-8) width 11: "+"
    20     RenderInline {mn} at (0,0) size 8x24
    21       RenderText {#text} at (20,-6) size 8x24
    22         text run at (20,-6) width 8: "1"
     17      RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     18        RenderBlock (anonymous) at (0,0) size 11x10
     19          RenderText {mo} at (0,-8) size 11x24
     20            text run at (0,-8) width 11: "+"
     21    RenderBlock {mn} at (20,0) size 8x12
     22      RenderText {#text} at (0,-6) size 8x24
     23        text run at (0,-6) width 8: "1"
    2324layer at (340,54) size 46x31
    2425  RenderMathMLMath {math} at (332,0) size 46x31 [padding: 0 1 0 1]
    2526    RenderMathMLSquareRoot {msqrt} at (1,0) size 44x31 [color=#008000] [bgcolor=#FFFF00] [border: (1px solid #008000) (2px solid #008000) (3px solid #008000) (4px solid #008000)] [intrinsic + CSS padding: 6 6 9 24]
    2627      RenderMathMLRow (anonymous) at (28,7) size 8x12
    27         RenderInline {mn} at (0,0) size 8x24
     28        RenderBlock {mn} at (0,0) size 8x12
    2829          RenderText {#text} at (0,-6) size 8x24
    2930            text run at (0,-6) width 8: "2"
  • trunk/LayoutTests/platform/mac/mathml/presentation/sub-expected.txt

    r126160 r128837  
    11layer at (0,0) size 800x600
    22  RenderView at (0,0) size 800x600
    3 layer at (0,0) size 800x125
    4   RenderBlock {html} at (0,0) size 800x125
    5     RenderBody {body} at (8,16) size 784x93
    6       RenderBlock {p} at (0,0) size 784x19
     3layer at (0,0) size 800x127
     4  RenderBlock {html} at (0,0) size 800x127
     5    RenderBody {body} at (8,16) size 784x95
     6      RenderBlock {p} at (0,0) size 784x21
    77        RenderText {#text} at (0,0) size 27x18
    88          text run at (0,0) width 27: "text "
    9         RenderMathMLMath {math} at (27,6) size 15x13 [padding: 0 1 0 1]
    10           RenderMathMLSubSup {msub} at (1,0) size 13x13
    11             RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    12               RenderInline {mi} at (0,0) size 7x24
     9        RenderMathMLMath {math} at (27,6) size 15x15 [padding: 0 1 0 1]
     10          RenderMathMLSubSup {msub} at (1,0) size 13x15
     11            RenderMathMLBlock (anonymous, flex) at (0,0) size 7x15 [padding: 0 0 6 0]
     12              RenderBlock {mi} at (0,0) size 7x9
    1313                RenderText {#text} at (0,-9) size 7x24
    1414                  text run at (0,-9) width 7: "x"
    15             RenderInline {mn} at (0,0) size 6x18
    16               RenderText {#text} at (7,-1) size 6x18
    17                 text run at (7,-1) width 6: "1"
     15            RenderMathMLBlock (anonymous, flex) at (7,0) size 6x15
     16              RenderBlock {mn} at (0,5) size 6x10
     17                RenderText {#text} at (0,-4) size 6x18
     18                  text run at (0,-4) width 6: "1"
    1819        RenderText {#text} at (0,0) size 0x0
    19       RenderBlock {p} at (0,35) size 784x19
     20      RenderBlock {p} at (0,37) size 784x19
    2021        RenderText {#text} at (0,0) size 27x18
    2122          text run at (0,0) width 27: "text "
    2223        RenderMathMLMath {math} at (27,5) size 18x14 [padding: 0 1 0 1]
    2324          RenderMathMLSubSup {msub} at (1,0) size 16x14
    24             RenderMathMLBlock (anonymous, inline-block) at (0,0) size 11x10
     25            RenderMathMLBlock (anonymous, flex) at (0,0) size 11x14 [padding: 0 0 4 0]
    2526              RenderMathMLOperator {mo} at (0,0) size 11x10
    26                 RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    27                   RenderText {mo} at (0,-8) size 11x24
    28                     text run at (0,-8) width 11: "+"
    29             RenderInline {mi} at (0,0) size 5x18
    30               RenderText {#text} at (11,0) size 5x18
    31                 text run at (11,0) width 5: "x"
     27                RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     28                  RenderBlock (anonymous) at (0,0) size 11x10
     29                    RenderText {mo} at (0,-8) size 11x24
     30                      text run at (0,-8) width 11: "+"
     31            RenderMathMLBlock (anonymous, flex) at (11,0) size 5x14
     32              RenderBlock {mi} at (0,7) size 5x7
     33                RenderText {#text} at (0,-7) size 5x18
     34                  text run at (0,-7) width 5: "x"
    3235        RenderText {#text} at (0,0) size 0x0
    33       RenderBlock {p} at (0,70) size 784x23
     36      RenderBlock {p} at (0,72) size 784x23
    3437        RenderText {#text} at (0,2) size 27x18
    3538          text run at (0,2) width 27: "text "
    3639        RenderMathMLMath {math} at (27,0) size 18x23 [padding: 0 1 0 1]
    3740          RenderMathMLSubSup {msub} at (1,0) size 16x23
    38             RenderMathMLBlock (anonymous, inline-block) at (0,0) size 9x23
     41            RenderMathMLBlock (anonymous, flex) at (0,0) size 9x23
    3942              RenderMathMLOperator {mo} at (0,0) size 9x23
    40                 RenderMathMLBlock (inline-block) {mo} at (0,0) size 9x23
    41                   RenderText {mo} at (0,-4) size 9x29
    42                     text run at (0,-4) width 9: "\x{222B}"
    43             RenderInline {mi} at (0,0) size 7x18
    44               RenderText {#text} at (9,7) size 7x18
    45                 text run at (9,7) width 7: "Y"
     43                RenderMathMLBlock (flex) {mo} at (0,0) size 9x23
     44                  RenderBlock (anonymous) at (0,0) size 9x23
     45                    RenderText {mo} at (0,-4) size 9x29
     46                      text run at (0,-4) width 9: "\x{222B}"
     47            RenderMathMLBlock (anonymous, flex) at (9,0) size 7x23
     48              RenderBlock {mi} at (0,14) size 7x9
     49                RenderText {#text} at (0,-5) size 7x18
     50                  text run at (0,-5) width 7: "Y"
    4651        RenderText {#text} at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/mathml/presentation/subsup-expected.txt

    r126698 r128837  
    11layer at (0,0) size 800x600
    22  RenderView at (0,0) size 800x600
    3 layer at (0,0) size 800x298
    4   RenderBlock {html} at (0,0) size 800x298
    5     RenderBody {body} at (8,16) size 784x266
    6       RenderBlock {p} at (0,0) size 784x21
    7         RenderText {#text} at (0,0) size 36x18
    8           text run at (0,0) width 36: "both: "
    9         RenderMathMLMath {math} at (36,1) size 16x20 [padding: 0 1 0 1]
     3layer at (0,0) size 800x302
     4  RenderBlock {html} at (0,0) size 800x302
     5    RenderBody {body} at (8,16) size 784x270
     6      RenderBlock {p} at (0,0) size 784x20
     7        RenderText {#text} at (0,1) size 36x18
     8          text run at (0,1) width 36: "both: "
     9        RenderMathMLMath {math} at (36,0) size 16x20 [padding: 0 1 0 1]
    1010          RenderMathMLSubSup {msubsup} at (1,0) size 14x20
    11             RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x14 [padding: 5 0 0 0]
    12               RenderInline {mi} at (0,0) size 7x24
    13                 RenderText {#text} at (0,-4) size 7x24
    14                   text run at (0,-4) width 7: "x"
    15             RenderMathMLBlock (anonymous, inline-block) at (8,0) size 6x20
    16               RenderMathMLBlock (anonymous, block) at (0,0) size 6x10
    17                 RenderInline {mi} at (0,0) size 5x18
    18                   RenderText {#text} at (0,-4) size 5x18
    19                     text run at (0,-4) width 5: "k"
    20               RenderMathMLBlock (anonymous, block) at (0,10) size 6x10
    21                 RenderInline {mn} at (0,0) size 6x18
    22                   RenderText {#text} at (0,-4) size 6x18
    23                     text run at (0,-4) width 6: "1"
    24         RenderText {#text} at (0,0) size 0x0
    25       RenderBlock {p} at (0,37) size 784x21
     11            RenderMathMLBlock (anonymous, flex) at (0,0) size 7x20 [padding: 7 0 4 0]
     12              RenderBlock {mi} at (0,7) size 7x9
     13                RenderText {#text} at (0,-9) size 7x24
     14                  text run at (0,-9) width 7: "x"
     15            RenderMathMLBlock (anonymous, flex) at (8,0) size 6x20
     16              RenderBlock {mn} at (0,10) size 6x10
     17                RenderText {#text} at (0,-4) size 6x18
     18                  text run at (0,-4) width 6: "1"
     19              RenderBlock {mi} at (0,0) size 6x10
     20                RenderText {#text} at (0,-4) size 5x18
     21                  text run at (0,-4) width 5: "k"
     22        RenderText {#text} at (0,0) size 0x0
     23      RenderBlock {p} at (0,36) size 784x21
    2624        RenderText {#text} at (0,0) size 148x18
    2725          text run at (0,0) width 148: "long subscript w/ both: "
    2826        RenderMathMLMath {math} at (148,0) size 46x21 [padding: 0 1 0 1]
    2927          RenderMathMLSubSup {msubsup} at (1,0) size 44x21
    30             RenderMathMLBlock (anonymous, inline-block) at (0,0) size 9x15 [padding: 3 0 0 0]
    31               RenderInline {mi} at (0,0) size 9x24
    32                 RenderText {#text} at (0,-3) size 9x24
    33                   text run at (0,-3) width 9: "Z"
    34             RenderMathMLBlock (anonymous, inline-block) at (10,0) size 34x21
    35               RenderMathMLBlock (anonymous, block) at (0,0) size 34x11
    36                 RenderInline {mi} at (0,0) size 3x18
    37                   RenderText {#text} at (0,-5) size 3x18
    38                     text run at (0,-5) width 3: "j"
    39               RenderMathMLBlock (anonymous, block) at (0,11) size 34x10
    40                 RenderMathMLRow {mrow} at (1,0) size 33x10
    41                   RenderInline {mi} at (0,0) size 5x18
    42                     RenderText {#text} at (0,-6) size 5x18
    43                       text run at (0,-6) width 5: "x"
    44                   RenderMathMLOperator {mo} at (5,0) size 9x8 [padding: 0 1 0 0]
    45                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
    46                       RenderText {mo} at (0,-6) size 8x18
    47                         text run at (0,-6) width 8: "+"
    48                   RenderInline {mi} at (0,0) size 5x18
    49                     RenderText {#text} at (14,-6) size 5x18
    50                       text run at (14,-6) width 5: "y"
    51                   RenderMathMLOperator {mo} at (19,0) size 9x8 [padding: 0 1 0 0]
    52                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
    53                       RenderText {mo} at (0,-6) size 8x18
    54                         text run at (0,-6) width 8: "+"
    55                   RenderInline {mi} at (0,0) size 5x18
    56                     RenderText {#text} at (28,-6) size 5x18
    57                       text run at (28,-6) width 5: "z"
    58         RenderText {#text} at (0,0) size 0x0
    59       RenderBlock {p} at (0,74) size 784x19
     28            RenderMathMLBlock (anonymous, flex) at (0,0) size 9x21 [padding: 3 0 0 0]
     29              RenderBlock {mi} at (0,3) size 9x18
     30                RenderText {#text} at (0,-6) size 9x24
     31                  text run at (0,-6) width 9: "Z"
     32            RenderMathMLBlock (anonymous, flex) at (10,0) size 34x21
     33              RenderMathMLRow {mrow} at (1,11) size 33x10
     34                RenderBlock {mi} at (0,1) size 5x7
     35                  RenderText {#text} at (0,-7) size 5x18
     36                    text run at (0,-7) width 5: "x"
     37                RenderMathMLOperator {mo} at (5,0) size 9x8 [padding: 0 1 0 0]
     38                  RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     39                    RenderBlock (anonymous) at (0,0) size 8x8
     40                      RenderText {mo} at (0,-6) size 8x18
     41                        text run at (0,-6) width 8: "+"
     42                RenderBlock {mi} at (14,1) size 5x9
     43                  RenderText {#text} at (0,-7) size 5x18
     44                    text run at (0,-7) width 5: "y"
     45                RenderMathMLOperator {mo} at (19,0) size 9x8 [padding: 0 1 0 0]
     46                  RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     47                    RenderBlock (anonymous) at (0,0) size 8x8
     48                      RenderText {mo} at (0,-6) size 8x18
     49                        text run at (0,-6) width 8: "+"
     50                RenderBlock {mi} at (28,1) size 5x7
     51                  RenderText {#text} at (0,-7) size 5x18
     52                    text run at (0,-7) width 5: "z"
     53              RenderBlock {mi} at (0,0) size 34x11
     54                RenderText {#text} at (0,-5) size 3x18
     55                  text run at (0,-5) width 3: "j"
     56        RenderText {#text} at (0,0) size 0x0
     57      RenderBlock {p} at (0,73) size 784x19
    6058        RenderText {#text} at (0,1) size 160x18
    6159          text run at (0,1) width 160: "long superscript w/ both: "
    6260        RenderMathMLMath {math} at (160,0) size 30x19 [padding: 0 1 0 1]
    6361          RenderMathMLSubSup {msubsup} at (1,0) size 28x19
    64             RenderMathMLBlock (anonymous, inline-block) at (0,0) size 9x16 [padding: 4 0 0 0]
    65               RenderInline {mi} at (0,0) size 9x24
    66                 RenderText {#text} at (0,-2) size 9x24
    67                   text run at (0,-2) width 9: "Z"
    68             RenderMathMLBlock (anonymous, inline-block) at (10,0) size 18x19
    69               RenderMathMLBlock (anonymous, block) at (0,0) size 18x12
    70                 RenderMathMLRow {mrow} at (1,0) size 17x12
    71                   RenderInline {mi} at (0,0) size 5x18
    72                     RenderText {#text} at (0,-4) size 5x18
    73                       text run at (0,-4) width 5: "k"
    74                   RenderMathMLOperator {mo} at (5,2) size 9x8 [padding: 0 1 0 0]
    75                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
    76                       RenderText {mo} at (0,-6) size 8x18
    77                         text run at (0,-6) width 8: "+"
    78                   RenderInline {mi} at (0,0) size 3x18
    79                     RenderText {#text} at (14,-4) size 3x18
    80                       text run at (14,-4) width 3: "j"
    81               RenderMathMLBlock (anonymous, block) at (0,12) size 18x7
    82                 RenderInline {mi} at (0,0) size 5x18
    83                   RenderText {#text} at (0,-7) size 5x18
    84                     text run at (0,-7) width 5: "x"
    85         RenderText {#text} at (0,0) size 0x0
    86       RenderBlock {p} at (0,109) size 784x22
     62            RenderMathMLBlock (anonymous, flex) at (0,0) size 9x19 [padding: 4 0 2 0]
     63              RenderBlock {mi} at (0,4) size 9x13
     64                RenderText {#text} at (0,-6) size 9x24
     65                  text run at (0,-6) width 9: "Z"
     66            RenderMathMLBlock (anonymous, flex) at (10,0) size 18x19
     67              RenderBlock {mi} at (0,12) size 18x7
     68                RenderText {#text} at (0,-7) size 5x18
     69                  text run at (0,-7) width 5: "x"
     70              RenderMathMLRow {mrow} at (1,0) size 17x12
     71                RenderBlock {mi} at (0,0) size 5x10
     72                  RenderText {#text} at (0,-4) size 5x18
     73                    text run at (0,-4) width 5: "k"
     74                RenderMathMLOperator {mo} at (5,2) size 9x8 [padding: 0 1 0 0]
     75                  RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     76                    RenderBlock (anonymous) at (0,0) size 8x8
     77                      RenderText {mo} at (0,-6) size 8x18
     78                        text run at (0,-6) width 8: "+"
     79                RenderBlock {mi} at (14,1) size 3x11
     80                  RenderText {#text} at (0,-5) size 3x18
     81                    text run at (0,-5) width 3: "j"
     82        RenderText {#text} at (0,0) size 0x0
     83      RenderBlock {p} at (0,108) size 784x22
    8784        RenderText {#text} at (0,1) size 88x18
    8885          text run at (0,1) width 88: "long w/ both: "
    8986        RenderMathMLMath {math} at (88,0) size 46x22 [padding: 0 1 0 1]
    9087          RenderMathMLSubSup {msubsup} at (1,0) size 44x22
    91             RenderMathMLBlock (anonymous, inline-block) at (0,0) size 9x16 [padding: 4 0 0 0]
    92               RenderInline {mi} at (0,0) size 9x24
    93                 RenderText {#text} at (0,-2) size 9x24
    94                   text run at (0,-2) width 9: "Z"
    95             RenderMathMLBlock (anonymous, inline-block) at (10,0) size 34x22
    96               RenderMathMLBlock (anonymous, block) at (0,0) size 34x12
    97                 RenderMathMLRow {mrow} at (0,0) size 17x12
    98                   RenderInline {mi} at (0,0) size 5x18
    99                     RenderText {#text} at (0,-4) size 5x18
    100                       text run at (0,-4) width 5: "k"
    101                   RenderMathMLOperator {mo} at (5,2) size 9x8 [padding: 0 1 0 0]
    102                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
    103                       RenderText {mo} at (0,-6) size 8x18
    104                         text run at (0,-6) width 8: "+"
    105                   RenderInline {mi} at (0,0) size 3x18
    106                     RenderText {#text} at (14,-4) size 3x18
    107                       text run at (14,-4) width 3: "j"
    108               RenderMathMLBlock (anonymous, block) at (0,12) size 34x10
    109                 RenderMathMLRow {mrow} at (1,0) size 33x10
    110                   RenderInline {mi} at (0,0) size 5x18
    111                     RenderText {#text} at (0,-6) size 5x18
    112                       text run at (0,-6) width 5: "x"
    113                   RenderMathMLOperator {mo} at (5,0) size 9x8 [padding: 0 1 0 0]
    114                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
    115                       RenderText {mo} at (0,-6) size 8x18
    116                         text run at (0,-6) width 8: "+"
    117                   RenderInline {mi} at (0,0) size 5x18
    118                     RenderText {#text} at (14,-6) size 5x18
    119                       text run at (14,-6) width 5: "y"
    120                   RenderMathMLOperator {mo} at (19,0) size 9x8 [padding: 0 1 0 0]
    121                     RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
    122                       RenderText {mo} at (0,-6) size 8x18
    123                         text run at (0,-6) width 8: "+"
    124                   RenderInline {mi} at (0,0) size 5x18
    125                     RenderText {#text} at (28,-6) size 5x18
    126                       text run at (28,-6) width 5: "z"
    127         RenderText {#text} at (0,0) size 0x0
    128       RenderBlock {p} at (0,147) size 784x21
    129         RenderText {#text} at (0,0) size 123x18
    130           text run at (0,0) width 123: "Wrapped in mrow: "
    131         RenderMathMLMath {math} at (123,1) size 16x20 [padding: 0 1 0 1]
    132           RenderMathMLRow {mrow} at (1,0) size 14x20
    133             RenderMathMLSubSup {msubsup} at (0,0) size 14x20
    134               RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x14 [padding: 5 0 0 0]
    135                 RenderInline {mi} at (0,0) size 7x24
    136                   RenderText {#text} at (0,-4) size 7x24
    137                     text run at (0,-4) width 7: "x"
    138               RenderMathMLBlock (anonymous, inline-block) at (8,0) size 6x20
    139                 RenderMathMLBlock (anonymous, block) at (0,0) size 6x10
    140                   RenderInline {mi} at (0,0) size 5x18
    141                     RenderText {#text} at (0,-4) size 5x18
    142                       text run at (0,-4) width 5: "k"
    143                 RenderMathMLBlock (anonymous, block) at (0,10) size 6x10
    144                   RenderInline {mn} at (0,0) size 6x18
    145                     RenderText {#text} at (0,-4) size 6x18
    146                       text run at (0,-4) width 6: "1"
    147         RenderText {#text} at (0,0) size 0x0
    148       RenderBlock {p} at (0,184) size 784x46
     88            RenderMathMLBlock (anonymous, flex) at (0,0) size 9x22 [padding: 4 0 0 0]
     89              RenderBlock {mi} at (0,4) size 9x18
     90                RenderText {#text} at (0,-6) size 9x24
     91                  text run at (0,-6) width 9: "Z"
     92            RenderMathMLBlock (anonymous, flex) at (10,0) size 34x22
     93              RenderMathMLRow {mrow} at (1,12) size 33x10
     94                RenderBlock {mi} at (0,1) size 5x7
     95                  RenderText {#text} at (0,-7) size 5x18
     96                    text run at (0,-7) width 5: "x"
     97                RenderMathMLOperator {mo} at (5,0) size 9x8 [padding: 0 1 0 0]
     98                  RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     99                    RenderBlock (anonymous) at (0,0) size 8x8
     100                      RenderText {mo} at (0,-6) size 8x18
     101                        text run at (0,-6) width 8: "+"
     102                RenderBlock {mi} at (14,1) size 5x9
     103                  RenderText {#text} at (0,-7) size 5x18
     104                    text run at (0,-7) width 5: "y"
     105                RenderMathMLOperator {mo} at (19,0) size 9x8 [padding: 0 1 0 0]
     106                  RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     107                    RenderBlock (anonymous) at (0,0) size 8x8
     108                      RenderText {mo} at (0,-6) size 8x18
     109                        text run at (0,-6) width 8: "+"
     110                RenderBlock {mi} at (28,1) size 5x7
     111                  RenderText {#text} at (0,-7) size 5x18
     112                    text run at (0,-7) width 5: "z"
     113              RenderMathMLRow {mrow} at (0,0) size 34x12
     114                RenderBlock {mi} at (0,0) size 5x10
     115                  RenderText {#text} at (0,-4) size 5x18
     116                    text run at (0,-4) width 5: "k"
     117                RenderMathMLOperator {mo} at (5,2) size 9x8 [padding: 0 1 0 0]
     118                  RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     119                    RenderBlock (anonymous) at (0,0) size 8x8
     120                      RenderText {mo} at (0,-6) size 8x18
     121                        text run at (0,-6) width 8: "+"
     122                RenderBlock {mi} at (14,1) size 3x11
     123                  RenderText {#text} at (0,-5) size 3x18
     124                    text run at (0,-5) width 3: "j"
     125        RenderText {#text} at (0,0) size 0x0
     126      RenderBlock {p} at (0,146) size 784x22
     127        RenderText {#text} at (0,1) size 123x18
     128          text run at (0,1) width 123: "Wrapped in mrow: "
     129        RenderMathMLMath {math} at (123,0) size 16x22 [padding: 0 1 0 1]
     130          RenderMathMLRow {mrow} at (1,0) size 14x22
     131            RenderMathMLSubSup {msubsup} at (0,0) size 14x22
     132              RenderMathMLBlock (anonymous, flex) at (0,0) size 7x22 [padding: 7 0 6 0]
     133                RenderBlock {mi} at (0,7) size 7x9
     134                  RenderText {#text} at (0,-9) size 7x24
     135                    text run at (0,-9) width 7: "x"
     136              RenderMathMLBlock (anonymous, flex) at (8,0) size 6x22
     137                RenderBlock {mn} at (0,12) size 6x10
     138                  RenderText {#text} at (0,-4) size 6x18
     139                    text run at (0,-4) width 6: "1"
     140                RenderBlock {mi} at (0,0) size 6x10
     141                  RenderText {#text} at (0,-4) size 5x18
     142                    text run at (0,-4) width 5: "k"
     143        RenderText {#text} at (0,0) size 0x0
     144      RenderBlock {p} at (0,184) size 784x45
    149145        RenderText {#text} at (0,12) size 169x18
    150146          text run at (0,12) width 169: "parts with various heights: "
    151         RenderMathMLMath {math} at (169,0) size 95x46 [padding: 0 1 0 1]
     147        RenderMathMLMath {math} at (169,0) size 95x45 [padding: 0 1 0 1]
    152148          RenderMathMLSubSup {msubsup} at (1,0) size 18x30
    153             RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x27 [padding: 18 0 0 0]
    154               RenderInline {mi} at (0,0) size 7x24
    155                 RenderText {#text} at (0,9) size 7x24
    156                   text run at (0,9) width 7: "x"
    157             RenderMathMLBlock (anonymous, inline-block) at (8,0) size 10x30
    158               RenderMathMLBlock (anonymous, block) at (0,0) size 10x23
    159                 RenderMathMLFraction {mfrac} at (0,0) size 10x23
    160                   RenderMathMLBlock (anonymous, block) at (0,0) size 10x12 [padding: 0 2 0 2]
    161                     RenderInline {mi} at (0,0) size 4x18
    162                       RenderText {#text} at (3,-4) size 4x18
    163                         text run at (3,-4) width 4: "f"
    164                   RenderMathMLBlock (anonymous, block) at (0,12) size 10x11 [padding: 2 2 0 2]
    165                     RenderInline {mi} at (0,0) size 6x18
    166                       RenderText {#text} at (2,-5) size 6x18
    167                         text run at (2,-5) width 6: "g"
    168               RenderMathMLBlock (anonymous, block) at (0,23) size 10x7
    169                 RenderInline {mi} at (0,0) size 6x18
    170                   RenderText {#text} at (0,-7) size 6x18
    171                     text run at (0,-7) width 6: "n"
     149            RenderMathMLBlock (anonymous, flex) at (0,0) size 7x30 [padding: 18 0 2 0]
     150              RenderBlock {mi} at (0,18) size 7x10
     151                RenderText {#text} at (0,-9) size 7x24
     152                  text run at (0,-9) width 7: "x"
     153            RenderMathMLBlock (anonymous, flex) at (8,0) size 10x30
     154              RenderBlock {mi} at (0,23) size 10x7
     155                RenderText {#text} at (0,-7) size 6x18
     156                  text run at (0,-7) width 6: "n"
     157              RenderMathMLFraction {mfrac} at (0,0) size 10x23
     158                RenderMathMLBlock (anonymous, flex) at (0,0) size 10x12 [padding: 0 2 0 2]
     159                  RenderBlock {mi} at (3,0) size 3x12
     160                    RenderText {#text} at (0,-4) size 3x18
     161                      text run at (0,-4) width 3: "f"
     162                RenderMathMLBlock (anonymous, flex) at (0,12) size 10x11 [padding: 2 2 0 2]
     163                  RenderBlock {mi} at (2,2) size 6x9
     164                    RenderText {#text} at (0,-7) size 6x18
     165                      text run at (0,-7) width 6: "g"
    172166          RenderMathMLOperator {mo} at (19,17) size 12x10 [padding: 0 1 0 0]
    173             RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    174               RenderText {mo} at (0,-8) size 11x24
    175                 text run at (0,-8) width 11: "+"
    176           RenderMathMLSubSup {msubsup} at (31,16) size 18x30
    177             RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x11 [padding: 2 0 0 0]
    178               RenderInline {mi} at (0,0) size 7x24
    179                 RenderText {#text} at (0,-7) size 7x24
    180                   text run at (0,-7) width 7: "x"
    181             RenderMathMLBlock (anonymous, inline-block) at (8,0) size 10x30
    182               RenderMathMLBlock (anonymous, block) at (0,0) size 10x7
    183                 RenderInline {mi} at (0,0) size 6x18
    184                   RenderText {#text} at (0,-7) size 6x18
    185                     text run at (0,-7) width 6: "n"
    186               RenderMathMLBlock (anonymous, block) at (0,7) size 10x23
    187                 RenderMathMLFraction {mfrac} at (0,0) size 10x23
    188                   RenderMathMLBlock (anonymous, block) at (0,0) size 10x12 [padding: 0 2 0 2]
    189                     RenderInline {mi} at (0,0) size 4x18
    190                       RenderText {#text} at (3,-4) size 4x18
    191                         text run at (3,-4) width 4: "f"
    192                   RenderMathMLBlock (anonymous, block) at (0,12) size 10x11 [padding: 2 2 0 2]
    193                     RenderInline {mi} at (0,0) size 6x18
    194                       RenderText {#text} at (2,-5) size 6x18
    195                         text run at (2,-5) width 6: "g"
     167            RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     168              RenderBlock (anonymous) at (0,0) size 11x10
     169                RenderText {mo} at (0,-8) size 11x24
     170                  text run at (0,-8) width 11: "+"
     171          RenderMathMLSubSup {msubsup} at (31,14) size 18x30
     172            RenderMathMLBlock (anonymous, flex) at (0,0) size 7x30 [padding: 4 0 4 0]
     173              RenderBlock {mi} at (0,4) size 7x22
     174                RenderText {#text} at (0,-9) size 7x24
     175                  text run at (0,-9) width 7: "x"
     176            RenderMathMLBlock (anonymous, flex) at (8,0) size 10x30
     177              RenderMathMLFraction {mfrac} at (0,7) size 10x23
     178                RenderMathMLBlock (anonymous, flex) at (0,0) size 10x12 [padding: 0 2 0 2]
     179                  RenderBlock {mi} at (3,0) size 3x12
     180                    RenderText {#text} at (0,-4) size 3x18
     181                      text run at (0,-4) width 3: "f"
     182                RenderMathMLBlock (anonymous, flex) at (0,12) size 10x11 [padding: 2 2 0 2]
     183                  RenderBlock {mi} at (2,2) size 6x9
     184                    RenderText {#text} at (0,-7) size 6x18
     185                      text run at (0,-7) width 6: "g"
     186              RenderBlock {mi} at (0,0) size 10x7
     187                RenderText {#text} at (0,-7) size 6x18
     188                  text run at (0,-7) width 6: "n"
    196189          RenderMathMLOperator {mo} at (49,17) size 12x10 [padding: 0 1 0 0]
    197             RenderMathMLBlock (inline-block) {mo} at (0,0) size 11x10
    198               RenderText {mo} at (0,-8) size 11x24
    199                 text run at (0,-8) width 11: "+"
     190            RenderMathMLBlock (flex) {mo} at (0,0) size 11x10
     191              RenderBlock (anonymous) at (0,0) size 11x10
     192                RenderText {mo} at (0,-8) size 11x24
     193                  text run at (0,-8) width 11: "+"
    200194          RenderMathMLSubSup {msubsup} at (61,6) size 33x39
    201             RenderMathMLBlock (anonymous, inline-block) at (0,0) size 26x39
     195            RenderMathMLBlock (anonymous, flex) at (0,0) size 26x39
    202196              RenderMathMLFenced {mfenced} at (0,0) size 26x39
    203197                RenderMathMLOperator {mfenced} at (0,1) size 6x38 [padding: 0 1 0 0]
    204198                RenderMathMLFraction {mfrac} at (6,0) size 14x29
    205                   RenderMathMLBlock (anonymous, block) at (0,0) size 14x15 [padding: 0 3 0 3]
    206                     RenderInline {mi} at (0,0) size 4x24
    207                       RenderText {#text} at (5,-6) size 4x24
    208                         text run at (5,-6) width 4: "f"
    209                   RenderMathMLBlock (anonymous, block) at (0,15) size 14x14 [padding: 2 3 0 3]
    210                     RenderInline {mi} at (0,0) size 8x24
    211                       RenderText {#text} at (3,-7) size 8x24
    212                         text run at (3,-7) width 8: "g"
     199                  RenderMathMLBlock (anonymous, flex) at (0,0) size 14x15 [padding: 0 3 0 3]
     200                    RenderBlock {mi} at (5,0) size 4x15
     201                      RenderText {#text} at (0,-6) size 4x24
     202                        text run at (0,-6) width 4: "f"
     203                  RenderMathMLBlock (anonymous, flex) at (0,15) size 14x14 [padding: 2 3 0 3]
     204                    RenderBlock {mi} at (3,2) size 8x12
     205                      RenderText {#text} at (0,-9) size 8x24
     206                        text run at (0,-9) width 8: "g"
    213207                RenderMathMLOperator {mfenced} at (20,1) size 6x38 [padding: 0 1 0 0]
    214             RenderMathMLBlock (anonymous, inline-block) at (27,0) size 6x39
    215               RenderMathMLBlock (anonymous, block) at (0,0) size 6x32 [padding: 0 0 25 0]
    216                 RenderInline {mi} at (0,0) size 5x18
    217                   RenderText {#text} at (0,-7) size 5x18
    218                     text run at (0,-7) width 5: "x"
    219               RenderMathMLBlock (anonymous, block) at (0,32) size 6x7
    220                 RenderInline {mi} at (0,0) size 6x18
    221                   RenderText {#text} at (0,-7) size 6x18
    222                     text run at (0,-7) width 6: "n"
    223         RenderText {#text} at (0,0) size 0x0
    224       RenderBlock {p} at (0,246) size 784x20
    225         RenderText {#text} at (0,2) size 26x18
    226           text run at (0,2) width 26: "For "
     208            RenderMathMLBlock (anonymous, flex) at (27,0) size 6x39
     209              RenderBlock {mi} at (0,32) size 6x7
     210                RenderText {#text} at (0,-7) size 6x18
     211                  text run at (0,-7) width 6: "n"
     212              RenderBlock {mi} at (0,0) size 6x7
     213                RenderText {#text} at (0,-7) size 5x18
     214                  text run at (0,-7) width 5: "x"
     215        RenderText {#text} at (0,0) size 0x0
     216      RenderBlock {p} at (0,245) size 784x25
     217        RenderText {#text} at (0,7) size 26x18
     218          text run at (0,7) width 26: "For "
    227219        RenderInline {a} at (0,0) size 71x18 [color=#0000EE]
    228           RenderText {#text} at (26,2) size 71x18
    229             text run at (26,2) width 71: "Bug 95015"
    230         RenderText {#text} at (97,2) size 430x18
    231           text run at (97,2) width 430: " - Remove { vertical-align: baseline } declarations from mathml.css: "
    232         RenderMathMLMath {math} at (527,0) size 20x17 [padding: 0 1 0 1]
    233           RenderMathMLSubSup {msup} at (1,0) size 18x17
    234             RenderMathMLBlock (anonymous, inline-block) at (0,8) size 7x9
    235               RenderInline {mi} at (0,0) size 7x24
    236                 RenderText {#text} at (0,-9) size 7x24
    237                   text run at (0,-9) width 7: "x"
    238             RenderMathMLSubSup {msubsup} at (7,0) size 11x16
    239               RenderMathMLBlock (anonymous, inline-block) at (0,0) size 5x13 [padding: 4 0 0 0]
    240                 RenderInline {mi} at (0,0) size 5x18
    241                   RenderText {#text} at (0,-3) size 5x18
    242                     text run at (0,-3) width 5: "y"
    243               RenderMathMLBlock (anonymous, inline-block) at (6,0) size 5x16
    244                 RenderMathMLBlock (anonymous, block) at (0,0) size 5x8
    245                   RenderInline {mn} at (0,0) size 5x13
     220          RenderText {#text} at (26,7) size 71x18
     221            text run at (26,7) width 71: "Bug 95015"
     222        RenderText {#text} at (97,7) size 430x18
     223          text run at (97,7) width 430: " - Remove { vertical-align: baseline } declarations from mathml.css: "
     224        RenderMathMLMath {math} at (527,0) size 20x22 [padding: 0 1 0 1]
     225          RenderMathMLSubSup {msup} at (1,0) size 18x22
     226            RenderMathMLBlock (anonymous, flex) at (0,0) size 7x22 [padding: 13 0 0 0]
     227              RenderBlock {mi} at (0,13) size 7x9
     228                RenderText {#text} at (0,-9) size 7x24
     229                  text run at (0,-9) width 7: "x"
     230            RenderMathMLBlock (anonymous, flex) at (7,0) size 11x22
     231              RenderMathMLSubSup {msubsup} at (0,0) size 11x18
     232                RenderMathMLBlock (anonymous, flex) at (0,0) size 5x18 [padding: 6 0 3 0]
     233                  RenderBlock {mi} at (0,6) size 5x9
     234                    RenderText {#text} at (0,-7) size 5x18
     235                      text run at (0,-7) width 5: "y"
     236                RenderMathMLBlock (anonymous, flex) at (6,0) size 5x18
     237                  RenderBlock {mn} at (0,10) size 5x8
     238                    RenderText {#text} at (0,-2) size 5x13
     239                      text run at (0,-2) width 5: "1"
     240                  RenderBlock {mn} at (0,0) size 5x8
    246241                    RenderText {#text} at (0,-2) size 5x13
    247242                      text run at (0,-2) width 5: "2"
    248                 RenderMathMLBlock (anonymous, block) at (0,8) size 5x8
    249                   RenderInline {mn} at (0,0) size 5x13
    250                     RenderText {#text} at (0,-2) size 5x13
    251                       text run at (0,-2) width 5: "1"
    252243        RenderText {#text} at (0,0) size 0x0
    253244layer at (238,207) size 5x10 scrollHeight 18
    254   RenderMathMLBlock (block) {mfenced} at (0,0) size 5x10
     245  RenderMathMLBlock (flex) {mfenced} at (0,0) size 5x10
     246    RenderBlock (anonymous) at (0,0) size 5x10
    255247layer at (238,217) size 5x10 scrollHeight 17
    256   RenderMathMLBlock (block) {mfenced} at (0,10) size 5x10
    257     RenderText {mfenced} at (0,-4) size 5x21
    258       text run at (0,-4) width 5: "\x{239C}"
     248  RenderMathMLBlock (flex) {mfenced} at (0,10) size 5x10
     249    RenderBlock (anonymous) at (0,0) size 5x10
     250      RenderText {mfenced} at (0,-4) size 5x21
     251        text run at (0,-4) width 5: "\x{239C}"
    259252layer at (238,227) size 5x4 scrollHeight 17
    260   RenderMathMLBlock (block) {mfenced} at (0,20) size 5x4
    261     RenderText {mfenced} at (0,-4) size 5x21
    262       text run at (0,-4) width 5: "\x{239C}"
     253  RenderMathMLBlock (flex) {mfenced} at (0,20) size 5x4
     254    RenderBlock (anonymous) at (0,0) size 5x4
     255      RenderText {mfenced} at (0,-4) size 5x21
     256        text run at (0,-4) width 5: "\x{239C}"
    263257layer at (238,231) size 5x14 scrollHeight 17
    264   RenderMathMLBlock (block) {mfenced} at (0,24) size 5x14
     258  RenderMathMLBlock (flex) {mfenced} at (0,24) size 5x14
     259    RenderBlock (anonymous) at (0,0) size 5x14
    265260layer at (258,207) size 5x10 scrollHeight 18
    266   RenderMathMLBlock (block) {mfenced} at (0,0) size 5x10
     261  RenderMathMLBlock (flex) {mfenced} at (0,0) size 5x10
     262    RenderBlock (anonymous) at (0,0) size 5x10
    267263layer at (258,217) size 5x10 scrollHeight 17
    268   RenderMathMLBlock (block) {mfenced} at (0,10) size 5x10
    269     RenderText {mfenced} at (0,-4) size 5x21
    270       text run at (0,-4) width 5: "\x{239F}"
     264  RenderMathMLBlock (flex) {mfenced} at (0,10) size 5x10
     265    RenderBlock (anonymous) at (0,0) size 5x10
     266      RenderText {mfenced} at (0,-4) size 5x21
     267        text run at (0,-4) width 5: "\x{239F}"
    271268layer at (258,227) size 5x4 scrollHeight 17
    272   RenderMathMLBlock (block) {mfenced} at (0,20) size 5x4
    273     RenderText {mfenced} at (0,-4) size 5x21
    274       text run at (0,-4) width 5: "\x{239F}"
     269  RenderMathMLBlock (flex) {mfenced} at (0,20) size 5x4
     270    RenderBlock (anonymous) at (0,0) size 5x4
     271      RenderText {mfenced} at (0,-4) size 5x21
     272        text run at (0,-4) width 5: "\x{239F}"
    275273layer at (258,231) size 5x14 scrollHeight 17
    276   RenderMathMLBlock (block) {mfenced} at (0,24) size 5x14
     274  RenderMathMLBlock (flex) {mfenced} at (0,24) size 5x14
     275    RenderBlock (anonymous) at (0,0) size 5x14
    277276layer at (238,208) size 5x15 backgroundClip at (238,207) size 5x10 clip at (238,207) size 5x10 outlineClip at (238,207) size 5x10
    278277  RenderBlock (relative positioned) {mfenced} at (0,0) size 5x15
  • trunk/LayoutTests/platform/mac/mathml/presentation/sup-expected.txt

    r127769 r128837  
    99        RenderMathMLMath {math} at (76,0) size 15x16 [padding: 0 1 0 1]
    1010          RenderMathMLSubSup {msup} at (1,0) size 13x16
    11             RenderMathMLBlock (anonymous, inline-block) at (0,7) size 7x9
    12               RenderInline {mi} at (0,0) size 7x24
     11            RenderMathMLBlock (anonymous, flex) at (0,0) size 7x16 [padding: 7 0 0 0]
     12              RenderBlock {mi} at (0,7) size 7x9
    1313                RenderText {#text} at (0,-9) size 7x24
    1414                  text run at (0,-9) width 7: "x"
    15             RenderInline {mn} at (0,0) size 6x18
    16               RenderText {#text} at (7,-4) size 6x18
    17                 text run at (7,-4) width 6: "2"
     15            RenderMathMLBlock (anonymous, flex) at (7,0) size 6x16
     16              RenderBlock {mn} at (0,0) size 6x10
     17                RenderText {#text} at (0,-4) size 6x18
     18                  text run at (0,-4) width 6: "2"
    1819        RenderText {#text} at (0,0) size 0x0
    1920      RenderBlock {p} at (0,35) size 784x36
     
    2930        RenderMathMLMath {math} at (0,20) size 814x13 [padding: 0 1 0 1]
    3031          RenderMathMLSubSup {msup} at (1,0) size 812x13
    31             RenderMathMLBlock (anonymous, inline-block) at (0,4) size 407x9
    32               RenderInline {mi} at (0,0) size 407x24
     32            RenderMathMLBlock (anonymous, flex) at (0,0) size 407x13 [padding: 4 0 0 0]
     33              RenderBlock {mi} at (0,4) size 407x9
    3334                RenderText {#text} at (0,-9) size 7x24
    3435                  text run at (0,-9) width 7: "x"
    35             RenderInline {mi} at (0,0) size 405x18
    36               RenderText {#text} at (407,-7) size 5x18
    37                 text run at (407,-7) width 5: "y"
     36            RenderMathMLBlock (anonymous, flex) at (407,0) size 405x13
     37              RenderBlock {mi} at (0,0) size 405x9
     38                RenderText {#text} at (0,-7) size 5x18
     39                  text run at (0,-7) width 5: "y"
    3840        RenderText {#text} at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/mathml/presentation/tables-expected.txt

    r124512 r128837  
    11layer at (0,0) size 800x600
    22  RenderView at (0,0) size 800x600
    3 layer at (0,0) size 800x168
    4   RenderBlock {html} at (0,0) size 800x168
    5     RenderBody {body} at (8,16) size 784x136
    6       RenderBlock {p} at (0,0) size 784x60
    7         RenderText {#text} at (0,19) size 49x18
    8           text run at (0,19) width 49: "simple: "
    9         RenderMathMLMath {math} at (49,0) size 80x60 [padding: 0 1 0 1]
    10           RenderTable {mtable} at (1,0) size 78x60
    11             RenderTableSection (anonymous) at (0,0) size 78x60
    12               RenderTableRow {mtr} at (0,0) size 78x19
    13                 RenderTableCell {mtd} at (0,0) size 26x19 [r=0 c=0 rs=1 cs=1]
    14                   RenderMathMLSubSup {msub} at (3,3) size 20x13
    15                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    16                       RenderInline {mi} at (0,0) size 8x24
    17                         RenderText {#text} at (0,-9) size 8x24
    18                           text run at (0,-9) width 8: "a"
    19                     RenderInline {mn} at (0,0) size 12x18
    20                       RenderText {#text} at (8,-1) size 12x18
    21                         text run at (8,-1) width 12: "11"
    22                 RenderTableCell {mtd} at (26,0) size 26x19 [r=0 c=1 rs=1 cs=1]
    23                   RenderMathMLSubSup {msub} at (3,3) size 20x13
    24                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    25                       RenderInline {mi} at (0,0) size 8x24
    26                         RenderText {#text} at (0,-9) size 8x24
    27                           text run at (0,-9) width 8: "a"
    28                     RenderInline {mn} at (0,0) size 12x18
    29                       RenderText {#text} at (8,-1) size 12x18
    30                         text run at (8,-1) width 12: "12"
    31                 RenderTableCell {mtd} at (52,0) size 26x19 [r=0 c=2 rs=1 cs=1]
    32                   RenderMathMLSubSup {msub} at (3,3) size 20x13
    33                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    34                       RenderInline {mi} at (0,0) size 8x24
    35                         RenderText {#text} at (0,-9) size 8x24
    36                           text run at (0,-9) width 8: "a"
    37                     RenderInline {mn} at (0,0) size 12x18
    38                       RenderText {#text} at (8,-1) size 12x18
    39                         text run at (8,-1) width 12: "13"
    40               RenderTableRow {mtr} at (0,19) size 78x22
    41                 RenderTableCell {mtd} at (0,19) size 26x22 [r=1 c=0 rs=1 cs=1]
    42                   RenderMathMLSubSup {msub} at (3,3) size 20x16
    43                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    44                       RenderInline {mi} at (0,0) size 8x24
    45                         RenderText {#text} at (0,-6) size 8x24
    46                           text run at (0,-6) width 8: "b"
    47                     RenderInline {mn} at (0,0) size 12x18
    48                       RenderText {#text} at (8,2) size 12x18
    49                         text run at (8,2) width 12: "21"
    50                 RenderTableCell {mtd} at (26,19) size 26x22 [r=1 c=1 rs=1 cs=1]
    51                   RenderMathMLSubSup {msub} at (3,3) size 20x16
    52                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    53                       RenderInline {mi} at (0,0) size 8x24
    54                         RenderText {#text} at (0,-6) size 8x24
    55                           text run at (0,-6) width 8: "b"
    56                     RenderInline {mn} at (0,0) size 12x18
    57                       RenderText {#text} at (8,2) size 12x18
    58                         text run at (8,2) width 12: "22"
    59                 RenderTableCell {mtd} at (52,19) size 26x22 [r=1 c=2 rs=1 cs=1]
    60                   RenderMathMLSubSup {msub} at (3,3) size 20x16
    61                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    62                       RenderInline {mi} at (0,0) size 8x24
    63                         RenderText {#text} at (0,-6) size 8x24
    64                           text run at (0,-6) width 8: "b"
    65                     RenderInline {mn} at (0,0) size 12x18
    66                       RenderText {#text} at (8,2) size 12x18
    67                         text run at (8,2) width 12: "23"
    68               RenderTableRow {mtr} at (0,41) size 78x19
    69                 RenderTableCell {mtd} at (0,41) size 26x19 [r=2 c=0 rs=1 cs=1]
    70                   RenderMathMLSubSup {msub} at (4,3) size 19x13
    71                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    72                       RenderInline {mi} at (0,0) size 7x24
    73                         RenderText {#text} at (0,-9) size 7x24
    74                           text run at (0,-9) width 7: "c"
    75                     RenderInline {mn} at (0,0) size 12x18
    76                       RenderText {#text} at (7,-1) size 12x18
    77                         text run at (7,-1) width 12: "31"
    78                 RenderTableCell {mtd} at (26,41) size 26x19 [r=2 c=1 rs=1 cs=1]
    79                   RenderMathMLSubSup {msub} at (4,3) size 19x13
    80                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    81                       RenderInline {mi} at (0,0) size 7x24
    82                         RenderText {#text} at (0,-9) size 7x24
    83                           text run at (0,-9) width 7: "c"
    84                     RenderInline {mn} at (0,0) size 12x18
    85                       RenderText {#text} at (7,-1) size 12x18
    86                         text run at (7,-1) width 12: "32"
    87                 RenderTableCell {mtd} at (52,41) size 26x19 [r=2 c=2 rs=1 cs=1]
    88                   RenderMathMLSubSup {msub} at (4,3) size 19x13
    89                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    90                       RenderInline {mi} at (0,0) size 7x24
    91                         RenderText {#text} at (0,-9) size 7x24
    92                           text run at (0,-9) width 7: "c"
    93                     RenderInline {mn} at (0,0) size 12x18
    94                       RenderText {#text} at (7,-1) size 12x18
    95                         text run at (7,-1) width 12: "33"
     3layer at (0,0) size 800x176
     4  RenderBlock {html} at (0,0) size 800x176
     5    RenderBody {body} at (8,16) size 784x144
     6      RenderBlock {p} at (0,0) size 784x64
     7        RenderText {#text} at (0,21) size 49x18
     8          text run at (0,21) width 49: "simple: "
     9        RenderMathMLMath {math} at (49,0) size 80x64 [padding: 0 1 0 1]
     10          RenderMathMLTable {mtable} at (1,0) size 78x64
     11            RenderTableSection (anonymous) at (0,0) size 78x64
     12              RenderTableRow {mtr} at (0,0) size 78x20
     13                RenderTableCell {mtd} at (0,0) size 26x20 [r=0 c=0 rs=1 cs=1]
     14                  RenderMathMLSubSup {msub} at (3,3) size 20x14
     15                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     16                      RenderBlock {mi} at (0,0) size 8x9
     17                        RenderText {#text} at (0,-9) size 8x24
     18                          text run at (0,-9) width 8: "a"
     19                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x14
     20                      RenderBlock {mn} at (0,4) size 12x10
     21                        RenderText {#text} at (0,-4) size 12x18
     22                          text run at (0,-4) width 12: "11"
     23                RenderTableCell {mtd} at (26,0) size 26x20 [r=0 c=1 rs=1 cs=1]
     24                  RenderMathMLSubSup {msub} at (3,3) size 20x14
     25                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     26                      RenderBlock {mi} at (0,0) size 8x9
     27                        RenderText {#text} at (0,-9) size 8x24
     28                          text run at (0,-9) width 8: "a"
     29                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x14
     30                      RenderBlock {mn} at (0,4) size 12x10
     31                        RenderText {#text} at (0,-4) size 12x18
     32                          text run at (0,-4) width 12: "12"
     33                RenderTableCell {mtd} at (52,0) size 26x20 [r=0 c=2 rs=1 cs=1]
     34                  RenderMathMLSubSup {msub} at (3,3) size 20x14
     35                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     36                      RenderBlock {mi} at (0,0) size 8x9
     37                        RenderText {#text} at (0,-9) size 8x24
     38                          text run at (0,-9) width 8: "a"
     39                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x14
     40                      RenderBlock {mn} at (0,4) size 12x10
     41                        RenderText {#text} at (0,-4) size 12x18
     42                          text run at (0,-4) width 12: "13"
     43              RenderTableRow {mtr} at (0,20) size 78x24
     44                RenderTableCell {mtd} at (0,20) size 26x24 [r=1 c=0 rs=1 cs=1]
     45                  RenderMathMLSubSup {msub} at (3,3) size 20x18
     46                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     47                      RenderBlock {mi} at (0,0) size 8x12
     48                        RenderText {#text} at (0,-6) size 8x24
     49                          text run at (0,-6) width 8: "b"
     50                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x18
     51                      RenderBlock {mn} at (0,8) size 12x10
     52                        RenderText {#text} at (0,-4) size 12x18
     53                          text run at (0,-4) width 12: "21"
     54                RenderTableCell {mtd} at (26,20) size 26x24 [r=1 c=1 rs=1 cs=1]
     55                  RenderMathMLSubSup {msub} at (3,3) size 20x18
     56                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     57                      RenderBlock {mi} at (0,0) size 8x12
     58                        RenderText {#text} at (0,-6) size 8x24
     59                          text run at (0,-6) width 8: "b"
     60                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x18
     61                      RenderBlock {mn} at (0,8) size 12x10
     62                        RenderText {#text} at (0,-4) size 12x18
     63                          text run at (0,-4) width 12: "22"
     64                RenderTableCell {mtd} at (52,20) size 26x24 [r=1 c=2 rs=1 cs=1]
     65                  RenderMathMLSubSup {msub} at (3,3) size 20x18
     66                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     67                      RenderBlock {mi} at (0,0) size 8x12
     68                        RenderText {#text} at (0,-6) size 8x24
     69                          text run at (0,-6) width 8: "b"
     70                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x18
     71                      RenderBlock {mn} at (0,8) size 12x10
     72                        RenderText {#text} at (0,-4) size 12x18
     73                          text run at (0,-4) width 12: "23"
     74              RenderTableRow {mtr} at (0,44) size 78x20
     75                RenderTableCell {mtd} at (0,44) size 26x20 [r=2 c=0 rs=1 cs=1]
     76                  RenderMathMLSubSup {msub} at (4,3) size 19x14
     77                    RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     78                      RenderBlock {mi} at (0,0) size 7x9
     79                        RenderText {#text} at (0,-9) size 7x24
     80                          text run at (0,-9) width 7: "c"
     81                    RenderMathMLBlock (anonymous, flex) at (7,0) size 12x14
     82                      RenderBlock {mn} at (0,4) size 12x10
     83                        RenderText {#text} at (0,-4) size 12x18
     84                          text run at (0,-4) width 12: "31"
     85                RenderTableCell {mtd} at (26,44) size 26x20 [r=2 c=1 rs=1 cs=1]
     86                  RenderMathMLSubSup {msub} at (4,3) size 19x14
     87                    RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     88                      RenderBlock {mi} at (0,0) size 7x9
     89                        RenderText {#text} at (0,-9) size 7x24
     90                          text run at (0,-9) width 7: "c"
     91                    RenderMathMLBlock (anonymous, flex) at (7,0) size 12x14
     92                      RenderBlock {mn} at (0,4) size 12x10
     93                        RenderText {#text} at (0,-4) size 12x18
     94                          text run at (0,-4) width 12: "32"
     95                RenderTableCell {mtd} at (52,44) size 26x20 [r=2 c=2 rs=1 cs=1]
     96                  RenderMathMLSubSup {msub} at (4,3) size 19x14
     97                    RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     98                      RenderBlock {mi} at (0,0) size 7x9
     99                        RenderText {#text} at (0,-9) size 7x24
     100                          text run at (0,-9) width 7: "c"
     101                    RenderMathMLBlock (anonymous, flex) at (7,0) size 12x14
     102                      RenderBlock {mn} at (0,4) size 12x10
     103                        RenderText {#text} at (0,-4) size 12x18
     104                          text run at (0,-4) width 12: "33"
    96105        RenderText {#text} at (0,0) size 0x0
    97       RenderBlock {p} at (0,76) size 784x60
    98         RenderText {#text} at (0,19) size 308x18
    99           text run at (0,19) width 308: "left, default (center) and right column alignment: "
    100         RenderMathMLMath {math} at (308,0) size 252x60 [padding: 0 1 0 1]
    101           RenderTable {mtable} at (1,0) size 78x60
    102             RenderTableSection (anonymous) at (0,0) size 78x60
    103               RenderTableRow {mtr} at (0,0) size 78x19
    104                 RenderTableCell {mtd} at (0,0) size 26x19 [r=0 c=0 rs=1 cs=1]
    105                   RenderMathMLSubSup {msub} at (3,3) size 14x13
    106                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    107                       RenderInline {mi} at (0,0) size 8x24
    108                         RenderText {#text} at (0,-9) size 8x24
    109                           text run at (0,-9) width 8: "a"
    110                     RenderInline {mn} at (0,0) size 6x18
    111                       RenderText {#text} at (8,-1) size 6x18
    112                         text run at (8,-1) width 6: "1"
    113                 RenderTableCell {mtd} at (26,0) size 26x19 [r=0 c=1 rs=1 cs=1]
    114                   RenderMathMLSubSup {msub} at (3,3) size 20x13
    115                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    116                       RenderInline {mi} at (0,0) size 8x24
    117                         RenderText {#text} at (0,-9) size 8x24
    118                           text run at (0,-9) width 8: "a"
    119                     RenderInline {mn} at (0,0) size 12x18
    120                       RenderText {#text} at (8,-1) size 12x18
    121                         text run at (8,-1) width 12: "12"
    122                 RenderTableCell {mtd} at (52,0) size 26x19 [r=0 c=2 rs=1 cs=1]
    123                   RenderMathMLSubSup {msub} at (3,3) size 20x13
    124                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    125                       RenderInline {mi} at (0,0) size 8x24
    126                         RenderText {#text} at (0,-9) size 8x24
    127                           text run at (0,-9) width 8: "a"
    128                     RenderInline {mn} at (0,0) size 12x18
    129                       RenderText {#text} at (8,-1) size 12x18
    130                         text run at (8,-1) width 12: "13"
    131               RenderTableRow {mtr} at (0,19) size 78x22
    132                 RenderTableCell {mtd} at (0,19) size 26x22 [r=1 c=0 rs=1 cs=1]
    133                   RenderMathMLSubSup {msub} at (3,3) size 20x16
    134                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    135                       RenderInline {mi} at (0,0) size 8x24
    136                         RenderText {#text} at (0,-6) size 8x24
    137                           text run at (0,-6) width 8: "b"
    138                     RenderInline {mn} at (0,0) size 12x18
    139                       RenderText {#text} at (8,2) size 12x18
    140                         text run at (8,2) width 12: "21"
    141                 RenderTableCell {mtd} at (26,19) size 26x22 [r=1 c=1 rs=1 cs=1]
    142                   RenderMathMLSubSup {msub} at (3,3) size 14x16
    143                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    144                       RenderInline {mi} at (0,0) size 8x24
    145                         RenderText {#text} at (0,-6) size 8x24
    146                           text run at (0,-6) width 8: "b"
    147                     RenderInline {mn} at (0,0) size 6x18
    148                       RenderText {#text} at (8,2) size 6x18
    149                         text run at (8,2) width 6: "2"
    150                 RenderTableCell {mtd} at (52,19) size 26x22 [r=1 c=2 rs=1 cs=1]
    151                   RenderMathMLSubSup {msub} at (3,3) size 20x16
    152                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    153                       RenderInline {mi} at (0,0) size 8x24
    154                         RenderText {#text} at (0,-6) size 8x24
    155                           text run at (0,-6) width 8: "b"
    156                     RenderInline {mn} at (0,0) size 12x18
    157                       RenderText {#text} at (8,2) size 12x18
    158                         text run at (8,2) width 12: "23"
    159               RenderTableRow {mtr} at (0,41) size 78x19
    160                 RenderTableCell {mtd} at (0,41) size 26x19 [r=2 c=0 rs=1 cs=1]
    161                   RenderMathMLSubSup {msub} at (3,3) size 19x13
    162                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    163                       RenderInline {mi} at (0,0) size 7x24
    164                         RenderText {#text} at (0,-9) size 7x24
    165                           text run at (0,-9) width 7: "c"
    166                     RenderInline {mn} at (0,0) size 12x18
    167                       RenderText {#text} at (7,-1) size 12x18
    168                         text run at (7,-1) width 12: "31"
    169                 RenderTableCell {mtd} at (26,41) size 26x19 [r=2 c=1 rs=1 cs=1]
    170                   RenderMathMLSubSup {msub} at (3,3) size 19x13
    171                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    172                       RenderInline {mi} at (0,0) size 7x24
    173                         RenderText {#text} at (0,-9) size 7x24
    174                           text run at (0,-9) width 7: "c"
    175                     RenderInline {mn} at (0,0) size 12x18
    176                       RenderText {#text} at (7,-1) size 12x18
    177                         text run at (7,-1) width 12: "32"
    178                 RenderTableCell {mtd} at (52,41) size 26x19 [r=2 c=2 rs=1 cs=1]
    179                   RenderMathMLSubSup {msub} at (3,3) size 13x13
    180                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    181                       RenderInline {mi} at (0,0) size 7x24
    182                         RenderText {#text} at (0,-9) size 7x24
    183                           text run at (0,-9) width 7: "c"
    184                     RenderInline {mn} at (0,0) size 6x18
    185                       RenderText {#text} at (7,-1) size 6x18
    186                         text run at (7,-1) width 6: "3"
    187           RenderInline {mtext} at (0,0) size 8x24
    188             RenderText {#text} at (79,16) size 8x24
    189               text run at (79,16) width 8: ", "
    190           RenderTable {mtable} at (87,0) size 78x60
    191             RenderTableSection (anonymous) at (0,0) size 78x60
    192               RenderTableRow {mtr} at (0,0) size 78x19
    193                 RenderTableCell {mtd} at (0,0) size 26x19 [r=0 c=0 rs=1 cs=1]
    194                   RenderMathMLSubSup {msub} at (6,3) size 14x13
    195                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    196                       RenderInline {mi} at (0,0) size 8x24
    197                         RenderText {#text} at (0,-9) size 8x24
    198                           text run at (0,-9) width 8: "a"
    199                     RenderInline {mn} at (0,0) size 6x18
    200                       RenderText {#text} at (8,-1) size 6x18
    201                         text run at (8,-1) width 6: "1"
    202                 RenderTableCell {mtd} at (26,0) size 26x19 [r=0 c=1 rs=1 cs=1]
    203                   RenderMathMLSubSup {msub} at (3,3) size 20x13
    204                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    205                       RenderInline {mi} at (0,0) size 8x24
    206                         RenderText {#text} at (0,-9) size 8x24
    207                           text run at (0,-9) width 8: "a"
    208                     RenderInline {mn} at (0,0) size 12x18
    209                       RenderText {#text} at (8,-1) size 12x18
    210                         text run at (8,-1) width 12: "12"
    211                 RenderTableCell {mtd} at (52,0) size 26x19 [r=0 c=2 rs=1 cs=1]
    212                   RenderMathMLSubSup {msub} at (3,3) size 20x13
    213                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    214                       RenderInline {mi} at (0,0) size 8x24
    215                         RenderText {#text} at (0,-9) size 8x24
    216                           text run at (0,-9) width 8: "a"
    217                     RenderInline {mn} at (0,0) size 12x18
    218                       RenderText {#text} at (8,-1) size 12x18
    219                         text run at (8,-1) width 12: "13"
    220               RenderTableRow {mtr} at (0,19) size 78x22
    221                 RenderTableCell {mtd} at (0,19) size 26x22 [r=1 c=0 rs=1 cs=1]
    222                   RenderMathMLSubSup {msub} at (3,3) size 20x16
    223                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    224                       RenderInline {mi} at (0,0) size 8x24
    225                         RenderText {#text} at (0,-6) size 8x24
    226                           text run at (0,-6) width 8: "b"
    227                     RenderInline {mn} at (0,0) size 12x18
    228                       RenderText {#text} at (8,2) size 12x18
    229                         text run at (8,2) width 12: "21"
    230                 RenderTableCell {mtd} at (26,19) size 26x22 [r=1 c=1 rs=1 cs=1]
    231                   RenderMathMLSubSup {msub} at (6,3) size 14x16
    232                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    233                       RenderInline {mi} at (0,0) size 8x24
    234                         RenderText {#text} at (0,-6) size 8x24
    235                           text run at (0,-6) width 8: "b"
    236                     RenderInline {mn} at (0,0) size 6x18
    237                       RenderText {#text} at (8,2) size 6x18
    238                         text run at (8,2) width 6: "2"
    239                 RenderTableCell {mtd} at (52,19) size 26x22 [r=1 c=2 rs=1 cs=1]
    240                   RenderMathMLSubSup {msub} at (3,3) size 20x16
    241                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    242                       RenderInline {mi} at (0,0) size 8x24
    243                         RenderText {#text} at (0,-6) size 8x24
    244                           text run at (0,-6) width 8: "b"
    245                     RenderInline {mn} at (0,0) size 12x18
    246                       RenderText {#text} at (8,2) size 12x18
    247                         text run at (8,2) width 12: "23"
    248               RenderTableRow {mtr} at (0,41) size 78x19
    249                 RenderTableCell {mtd} at (0,41) size 26x19 [r=2 c=0 rs=1 cs=1]
    250                   RenderMathMLSubSup {msub} at (4,3) size 19x13
    251                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    252                       RenderInline {mi} at (0,0) size 7x24
    253                         RenderText {#text} at (0,-9) size 7x24
    254                           text run at (0,-9) width 7: "c"
    255                     RenderInline {mn} at (0,0) size 12x18
    256                       RenderText {#text} at (7,-1) size 12x18
    257                         text run at (7,-1) width 12: "31"
    258                 RenderTableCell {mtd} at (26,41) size 26x19 [r=2 c=1 rs=1 cs=1]
    259                   RenderMathMLSubSup {msub} at (4,3) size 19x13
    260                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    261                       RenderInline {mi} at (0,0) size 7x24
    262                         RenderText {#text} at (0,-9) size 7x24
    263                           text run at (0,-9) width 7: "c"
    264                     RenderInline {mn} at (0,0) size 12x18
    265                       RenderText {#text} at (7,-1) size 12x18
    266                         text run at (7,-1) width 12: "32"
    267                 RenderTableCell {mtd} at (52,41) size 26x19 [r=2 c=2 rs=1 cs=1]
    268                   RenderMathMLSubSup {msub} at (7,3) size 13x13
    269                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    270                       RenderInline {mi} at (0,0) size 7x24
    271                         RenderText {#text} at (0,-9) size 7x24
    272                           text run at (0,-9) width 7: "c"
    273                     RenderInline {mn} at (0,0) size 6x18
    274                       RenderText {#text} at (7,-1) size 6x18
    275                         text run at (7,-1) width 6: "3"
    276           RenderInline {mtext} at (0,0) size 8x24
    277             RenderText {#text} at (165,16) size 8x24
    278               text run at (165,16) width 8: ", "
    279           RenderTable {mtable} at (173,0) size 78x60
    280             RenderTableSection (anonymous) at (0,0) size 78x60
    281               RenderTableRow {mtr} at (0,0) size 78x19
    282                 RenderTableCell {mtd} at (0,0) size 26x19 [r=0 c=0 rs=1 cs=1]
    283                   RenderMathMLSubSup {msub} at (9,3) size 14x13
    284                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    285                       RenderInline {mi} at (0,0) size 8x24
    286                         RenderText {#text} at (0,-9) size 8x24
    287                           text run at (0,-9) width 8: "a"
    288                     RenderInline {mn} at (0,0) size 6x18
    289                       RenderText {#text} at (8,-1) size 6x18
    290                         text run at (8,-1) width 6: "1"
    291                 RenderTableCell {mtd} at (26,0) size 26x19 [r=0 c=1 rs=1 cs=1]
    292                   RenderMathMLSubSup {msub} at (3,3) size 20x13
    293                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    294                       RenderInline {mi} at (0,0) size 8x24
    295                         RenderText {#text} at (0,-9) size 8x24
    296                           text run at (0,-9) width 8: "a"
    297                     RenderInline {mn} at (0,0) size 12x18
    298                       RenderText {#text} at (8,-1) size 12x18
    299                         text run at (8,-1) width 12: "12"
    300                 RenderTableCell {mtd} at (52,0) size 26x19 [r=0 c=2 rs=1 cs=1]
    301                   RenderMathMLSubSup {msub} at (3,3) size 20x13
    302                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x9
    303                       RenderInline {mi} at (0,0) size 8x24
    304                         RenderText {#text} at (0,-9) size 8x24
    305                           text run at (0,-9) width 8: "a"
    306                     RenderInline {mn} at (0,0) size 12x18
    307                       RenderText {#text} at (8,-1) size 12x18
    308                         text run at (8,-1) width 12: "13"
    309               RenderTableRow {mtr} at (0,19) size 78x22
    310                 RenderTableCell {mtd} at (0,19) size 26x22 [r=1 c=0 rs=1 cs=1]
    311                   RenderMathMLSubSup {msub} at (3,3) size 20x16
    312                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    313                       RenderInline {mi} at (0,0) size 8x24
    314                         RenderText {#text} at (0,-6) size 8x24
    315                           text run at (0,-6) width 8: "b"
    316                     RenderInline {mn} at (0,0) size 12x18
    317                       RenderText {#text} at (8,2) size 12x18
    318                         text run at (8,2) width 12: "21"
    319                 RenderTableCell {mtd} at (26,19) size 26x22 [r=1 c=1 rs=1 cs=1]
    320                   RenderMathMLSubSup {msub} at (9,3) size 14x16
    321                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    322                       RenderInline {mi} at (0,0) size 8x24
    323                         RenderText {#text} at (0,-6) size 8x24
    324                           text run at (0,-6) width 8: "b"
    325                     RenderInline {mn} at (0,0) size 6x18
    326                       RenderText {#text} at (8,2) size 6x18
    327                         text run at (8,2) width 6: "2"
    328                 RenderTableCell {mtd} at (52,19) size 26x22 [r=1 c=2 rs=1 cs=1]
    329                   RenderMathMLSubSup {msub} at (3,3) size 20x16
    330                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 8x12
    331                       RenderInline {mi} at (0,0) size 8x24
    332                         RenderText {#text} at (0,-6) size 8x24
    333                           text run at (0,-6) width 8: "b"
    334                     RenderInline {mn} at (0,0) size 12x18
    335                       RenderText {#text} at (8,2) size 12x18
    336                         text run at (8,2) width 12: "23"
    337               RenderTableRow {mtr} at (0,41) size 78x19
    338                 RenderTableCell {mtd} at (0,41) size 26x19 [r=2 c=0 rs=1 cs=1]
    339                   RenderMathMLSubSup {msub} at (4,3) size 19x13
    340                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    341                       RenderInline {mi} at (0,0) size 7x24
    342                         RenderText {#text} at (0,-9) size 7x24
    343                           text run at (0,-9) width 7: "c"
    344                     RenderInline {mn} at (0,0) size 12x18
    345                       RenderText {#text} at (7,-1) size 12x18
    346                         text run at (7,-1) width 12: "31"
    347                 RenderTableCell {mtd} at (26,41) size 26x19 [r=2 c=1 rs=1 cs=1]
    348                   RenderMathMLSubSup {msub} at (4,3) size 19x13
    349                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    350                       RenderInline {mi} at (0,0) size 7x24
    351                         RenderText {#text} at (0,-9) size 7x24
    352                           text run at (0,-9) width 7: "c"
    353                     RenderInline {mn} at (0,0) size 12x18
    354                       RenderText {#text} at (7,-1) size 12x18
    355                         text run at (7,-1) width 12: "32"
    356                 RenderTableCell {mtd} at (52,41) size 26x19 [r=2 c=2 rs=1 cs=1]
    357                   RenderMathMLSubSup {msub} at (10,3) size 13x13
    358                     RenderMathMLBlock (anonymous, inline-block) at (0,0) size 7x9
    359                       RenderInline {mi} at (0,0) size 7x24
    360                         RenderText {#text} at (0,-9) size 7x24
    361                           text run at (0,-9) width 7: "c"
    362                     RenderInline {mn} at (0,0) size 6x18
    363                       RenderText {#text} at (7,-1) size 6x18
    364                         text run at (7,-1) width 6: "3"
     106      RenderBlock {p} at (0,80) size 784x64
     107        RenderText {#text} at (0,21) size 308x18
     108          text run at (0,21) width 308: "left, default (center) and right column alignment: "
     109        RenderMathMLMath {math} at (308,0) size 244x64 [padding: 0 1 0 1]
     110          RenderMathMLTable {mtable} at (1,0) size 78x64
     111            RenderTableSection (anonymous) at (0,0) size 78x64
     112              RenderTableRow {mtr} at (0,0) size 78x20
     113                RenderTableCell {mtd} at (0,0) size 26x20 [r=0 c=0 rs=1 cs=1]
     114                  RenderMathMLSubSup {msub} at (3,3) size 14x14
     115                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     116                      RenderBlock {mi} at (0,0) size 8x9
     117                        RenderText {#text} at (0,-9) size 8x24
     118                          text run at (0,-9) width 8: "a"
     119                    RenderMathMLBlock (anonymous, flex) at (8,0) size 6x14
     120                      RenderBlock {mn} at (0,4) size 6x10
     121                        RenderText {#text} at (0,-4) size 6x18
     122                          text run at (0,-4) width 6: "1"
     123                RenderTableCell {mtd} at (26,0) size 26x20 [r=0 c=1 rs=1 cs=1]
     124                  RenderMathMLSubSup {msub} at (3,3) size 20x14
     125                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     126                      RenderBlock {mi} at (0,0) size 8x9
     127                        RenderText {#text} at (0,-9) size 8x24
     128                          text run at (0,-9) width 8: "a"
     129                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x14
     130                      RenderBlock {mn} at (0,4) size 12x10
     131                        RenderText {#text} at (0,-4) size 12x18
     132                          text run at (0,-4) width 12: "12"
     133                RenderTableCell {mtd} at (52,0) size 26x20 [r=0 c=2 rs=1 cs=1]
     134                  RenderMathMLSubSup {msub} at (3,3) size 20x14
     135                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     136                      RenderBlock {mi} at (0,0) size 8x9
     137                        RenderText {#text} at (0,-9) size 8x24
     138                          text run at (0,-9) width 8: "a"
     139                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x14
     140                      RenderBlock {mn} at (0,4) size 12x10
     141                        RenderText {#text} at (0,-4) size 12x18
     142                          text run at (0,-4) width 12: "13"
     143              RenderTableRow {mtr} at (0,20) size 78x24
     144                RenderTableCell {mtd} at (0,20) size 26x24 [r=1 c=0 rs=1 cs=1]
     145                  RenderMathMLSubSup {msub} at (3,3) size 20x18
     146                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     147                      RenderBlock {mi} at (0,0) size 8x12
     148                        RenderText {#text} at (0,-6) size 8x24
     149                          text run at (0,-6) width 8: "b"
     150                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x18
     151                      RenderBlock {mn} at (0,8) size 12x10
     152                        RenderText {#text} at (0,-4) size 12x18
     153                          text run at (0,-4) width 12: "21"
     154                RenderTableCell {mtd} at (26,20) size 26x24 [r=1 c=1 rs=1 cs=1]
     155                  RenderMathMLSubSup {msub} at (3,3) size 14x18
     156                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     157                      RenderBlock {mi} at (0,0) size 8x12
     158                        RenderText {#text} at (0,-6) size 8x24
     159                          text run at (0,-6) width 8: "b"
     160                    RenderMathMLBlock (anonymous, flex) at (8,0) size 6x18
     161                      RenderBlock {mn} at (0,8) size 6x10
     162                        RenderText {#text} at (0,-4) size 6x18
     163                          text run at (0,-4) width 6: "2"
     164                RenderTableCell {mtd} at (52,20) size 26x24 [r=1 c=2 rs=1 cs=1]
     165                  RenderMathMLSubSup {msub} at (3,3) size 20x18
     166                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     167                      RenderBlock {mi} at (0,0) size 8x12
     168                        RenderText {#text} at (0,-6) size 8x24
     169                          text run at (0,-6) width 8: "b"
     170                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x18
     171                      RenderBlock {mn} at (0,8) size 12x10
     172                        RenderText {#text} at (0,-4) size 12x18
     173                          text run at (0,-4) width 12: "23"
     174              RenderTableRow {mtr} at (0,44) size 78x20
     175                RenderTableCell {mtd} at (0,44) size 26x20 [r=2 c=0 rs=1 cs=1]
     176                  RenderMathMLSubSup {msub} at (3,3) size 19x14
     177                    RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     178                      RenderBlock {mi} at (0,0) size 7x9
     179                        RenderText {#text} at (0,-9) size 7x24
     180                          text run at (0,-9) width 7: "c"
     181                    RenderMathMLBlock (anonymous, flex) at (7,0) size 12x14
     182                      RenderBlock {mn} at (0,4) size 12x10
     183                        RenderText {#text} at (0,-4) size 12x18
     184                          text run at (0,-4) width 12: "31"
     185                RenderTableCell {mtd} at (26,44) size 26x20 [r=2 c=1 rs=1 cs=1]
     186                  RenderMathMLSubSup {msub} at (3,3) size 19x14
     187                    RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     188                      RenderBlock {mi} at (0,0) size 7x9
     189                        RenderText {#text} at (0,-9) size 7x24
     190                          text run at (0,-9) width 7: "c"
     191                    RenderMathMLBlock (anonymous, flex) at (7,0) size 12x14
     192                      RenderBlock {mn} at (0,4) size 12x10
     193                        RenderText {#text} at (0,-4) size 12x18
     194                          text run at (0,-4) width 12: "32"
     195                RenderTableCell {mtd} at (52,44) size 26x20 [r=2 c=2 rs=1 cs=1]
     196                  RenderMathMLSubSup {msub} at (3,3) size 13x14
     197                    RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     198                      RenderBlock {mi} at (0,0) size 7x9
     199                        RenderText {#text} at (0,-9) size 7x24
     200                          text run at (0,-9) width 7: "c"
     201                    RenderMathMLBlock (anonymous, flex) at (7,0) size 6x14
     202                      RenderBlock {mn} at (0,4) size 6x10
     203                        RenderText {#text} at (0,-4) size 6x18
     204                          text run at (0,-4) width 6: "3"
     205          RenderBlock {mtext} at (79,33) size 4x5
     206            RenderText {#text} at (0,-15) size 4x24
     207              text run at (0,-15) width 4: ","
     208          RenderMathMLTable {mtable} at (83,0) size 78x64
     209            RenderTableSection (anonymous) at (0,0) size 78x64
     210              RenderTableRow {mtr} at (0,0) size 78x20
     211                RenderTableCell {mtd} at (0,0) size 26x20 [r=0 c=0 rs=1 cs=1]
     212                  RenderMathMLSubSup {msub} at (6,3) size 14x14
     213                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     214                      RenderBlock {mi} at (0,0) size 8x9
     215                        RenderText {#text} at (0,-9) size 8x24
     216                          text run at (0,-9) width 8: "a"
     217                    RenderMathMLBlock (anonymous, flex) at (8,0) size 6x14
     218                      RenderBlock {mn} at (0,4) size 6x10
     219                        RenderText {#text} at (0,-4) size 6x18
     220                          text run at (0,-4) width 6: "1"
     221                RenderTableCell {mtd} at (26,0) size 26x20 [r=0 c=1 rs=1 cs=1]
     222                  RenderMathMLSubSup {msub} at (3,3) size 20x14
     223                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     224                      RenderBlock {mi} at (0,0) size 8x9
     225                        RenderText {#text} at (0,-9) size 8x24
     226                          text run at (0,-9) width 8: "a"
     227                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x14
     228                      RenderBlock {mn} at (0,4) size 12x10
     229                        RenderText {#text} at (0,-4) size 12x18
     230                          text run at (0,-4) width 12: "12"
     231                RenderTableCell {mtd} at (52,0) size 26x20 [r=0 c=2 rs=1 cs=1]
     232                  RenderMathMLSubSup {msub} at (3,3) size 20x14
     233                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     234                      RenderBlock {mi} at (0,0) size 8x9
     235                        RenderText {#text} at (0,-9) size 8x24
     236                          text run at (0,-9) width 8: "a"
     237                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x14
     238                      RenderBlock {mn} at (0,4) size 12x10
     239                        RenderText {#text} at (0,-4) size 12x18
     240                          text run at (0,-4) width 12: "13"
     241              RenderTableRow {mtr} at (0,20) size 78x24
     242                RenderTableCell {mtd} at (0,20) size 26x24 [r=1 c=0 rs=1 cs=1]
     243                  RenderMathMLSubSup {msub} at (3,3) size 20x18
     244                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     245                      RenderBlock {mi} at (0,0) size 8x12
     246                        RenderText {#text} at (0,-6) size 8x24
     247                          text run at (0,-6) width 8: "b"
     248                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x18
     249                      RenderBlock {mn} at (0,8) size 12x10
     250                        RenderText {#text} at (0,-4) size 12x18
     251                          text run at (0,-4) width 12: "21"
     252                RenderTableCell {mtd} at (26,20) size 26x24 [r=1 c=1 rs=1 cs=1]
     253                  RenderMathMLSubSup {msub} at (6,3) size 14x18
     254                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     255                      RenderBlock {mi} at (0,0) size 8x12
     256                        RenderText {#text} at (0,-6) size 8x24
     257                          text run at (0,-6) width 8: "b"
     258                    RenderMathMLBlock (anonymous, flex) at (8,0) size 6x18
     259                      RenderBlock {mn} at (0,8) size 6x10
     260                        RenderText {#text} at (0,-4) size 6x18
     261                          text run at (0,-4) width 6: "2"
     262                RenderTableCell {mtd} at (52,20) size 26x24 [r=1 c=2 rs=1 cs=1]
     263                  RenderMathMLSubSup {msub} at (3,3) size 20x18
     264                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     265                      RenderBlock {mi} at (0,0) size 8x12
     266                        RenderText {#text} at (0,-6) size 8x24
     267                          text run at (0,-6) width 8: "b"
     268                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x18
     269                      RenderBlock {mn} at (0,8) size 12x10
     270                        RenderText {#text} at (0,-4) size 12x18
     271                          text run at (0,-4) width 12: "23"
     272              RenderTableRow {mtr} at (0,44) size 78x20
     273                RenderTableCell {mtd} at (0,44) size 26x20 [r=2 c=0 rs=1 cs=1]
     274                  RenderMathMLSubSup {msub} at (4,3) size 19x14
     275                    RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     276                      RenderBlock {mi} at (0,0) size 7x9
     277                        RenderText {#text} at (0,-9) size 7x24
     278                          text run at (0,-9) width 7: "c"
     279                    RenderMathMLBlock (anonymous, flex) at (7,0) size 12x14
     280                      RenderBlock {mn} at (0,4) size 12x10
     281                        RenderText {#text} at (0,-4) size 12x18
     282                          text run at (0,-4) width 12: "31"
     283                RenderTableCell {mtd} at (26,44) size 26x20 [r=2 c=1 rs=1 cs=1]
     284                  RenderMathMLSubSup {msub} at (4,3) size 19x14
     285                    RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     286                      RenderBlock {mi} at (0,0) size 7x9
     287                        RenderText {#text} at (0,-9) size 7x24
     288                          text run at (0,-9) width 7: "c"
     289                    RenderMathMLBlock (anonymous, flex) at (7,0) size 12x14
     290                      RenderBlock {mn} at (0,4) size 12x10
     291                        RenderText {#text} at (0,-4) size 12x18
     292                          text run at (0,-4) width 12: "32"
     293                RenderTableCell {mtd} at (52,44) size 26x20 [r=2 c=2 rs=1 cs=1]
     294                  RenderMathMLSubSup {msub} at (7,3) size 13x14
     295                    RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     296                      RenderBlock {mi} at (0,0) size 7x9
     297                        RenderText {#text} at (0,-9) size 7x24
     298                          text run at (0,-9) width 7: "c"
     299                    RenderMathMLBlock (anonymous, flex) at (7,0) size 6x14
     300                      RenderBlock {mn} at (0,4) size 6x10
     301                        RenderText {#text} at (0,-4) size 6x18
     302                          text run at (0,-4) width 6: "3"
     303          RenderBlock {mtext} at (161,33) size 4x5
     304            RenderText {#text} at (0,-15) size 4x24
     305              text run at (0,-15) width 4: ","
     306          RenderMathMLTable {mtable} at (165,0) size 78x64
     307            RenderTableSection (anonymous) at (0,0) size 78x64
     308              RenderTableRow {mtr} at (0,0) size 78x20
     309                RenderTableCell {mtd} at (0,0) size 26x20 [r=0 c=0 rs=1 cs=1]
     310                  RenderMathMLSubSup {msub} at (9,3) size 14x14
     311                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     312                      RenderBlock {mi} at (0,0) size 8x9
     313                        RenderText {#text} at (0,-9) size 8x24
     314                          text run at (0,-9) width 8: "a"
     315                    RenderMathMLBlock (anonymous, flex) at (8,0) size 6x14
     316                      RenderBlock {mn} at (0,4) size 6x10
     317                        RenderText {#text} at (0,-4) size 6x18
     318                          text run at (0,-4) width 6: "1"
     319                RenderTableCell {mtd} at (26,0) size 26x20 [r=0 c=1 rs=1 cs=1]
     320                  RenderMathMLSubSup {msub} at (3,3) size 20x14
     321                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     322                      RenderBlock {mi} at (0,0) size 8x9
     323                        RenderText {#text} at (0,-9) size 8x24
     324                          text run at (0,-9) width 8: "a"
     325                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x14
     326                      RenderBlock {mn} at (0,4) size 12x10
     327                        RenderText {#text} at (0,-4) size 12x18
     328                          text run at (0,-4) width 12: "12"
     329                RenderTableCell {mtd} at (52,0) size 26x20 [r=0 c=2 rs=1 cs=1]
     330                  RenderMathMLSubSup {msub} at (3,3) size 20x14
     331                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x14 [padding: 0 0 5 0]
     332                      RenderBlock {mi} at (0,0) size 8x9
     333                        RenderText {#text} at (0,-9) size 8x24
     334                          text run at (0,-9) width 8: "a"
     335                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x14
     336                      RenderBlock {mn} at (0,4) size 12x10
     337                        RenderText {#text} at (0,-4) size 12x18
     338                          text run at (0,-4) width 12: "13"
     339              RenderTableRow {mtr} at (0,20) size 78x24
     340                RenderTableCell {mtd} at (0,20) size 26x24 [r=1 c=0 rs=1 cs=1]
     341                  RenderMathMLSubSup {msub} at (3,3) size 20x18
     342                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     343                      RenderBlock {mi} at (0,0) size 8x12
     344                        RenderText {#text} at (0,-6) size 8x24
     345                          text run at (0,-6) width 8: "b"
     346                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x18
     347                      RenderBlock {mn} at (0,8) size 12x10
     348                        RenderText {#text} at (0,-4) size 12x18
     349                          text run at (0,-4) width 12: "21"
     350                RenderTableCell {mtd} at (26,20) size 26x24 [r=1 c=1 rs=1 cs=1]
     351                  RenderMathMLSubSup {msub} at (9,3) size 14x18
     352                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     353                      RenderBlock {mi} at (0,0) size 8x12
     354                        RenderText {#text} at (0,-6) size 8x24
     355                          text run at (0,-6) width 8: "b"
     356                    RenderMathMLBlock (anonymous, flex) at (8,0) size 6x18
     357                      RenderBlock {mn} at (0,8) size 6x10
     358                        RenderText {#text} at (0,-4) size 6x18
     359                          text run at (0,-4) width 6: "2"
     360                RenderTableCell {mtd} at (52,20) size 26x24 [r=1 c=2 rs=1 cs=1]
     361                  RenderMathMLSubSup {msub} at (3,3) size 20x18
     362                    RenderMathMLBlock (anonymous, flex) at (0,0) size 8x18 [padding: 0 0 6 0]
     363                      RenderBlock {mi} at (0,0) size 8x12
     364                        RenderText {#text} at (0,-6) size 8x24
     365                          text run at (0,-6) width 8: "b"
     366                    RenderMathMLBlock (anonymous, flex) at (8,0) size 12x18
     367                      RenderBlock {mn} at (0,8) size 12x10
     368                        RenderText {#text} at (0,-4) size 12x18
     369                          text run at (0,-4) width 12: "23"
     370              RenderTableRow {mtr} at (0,44) size 78x20
     371                RenderTableCell {mtd} at (0,44) size 26x20 [r=2 c=0 rs=1 cs=1]
     372                  RenderMathMLSubSup {msub} at (4,3) size 19x14
     373                    RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     374                      RenderBlock {mi} at (0,0) size 7x9
     375                        RenderText {#text} at (0,-9) size 7x24
     376                          text run at (0,-9) width 7: "c"
     377                    RenderMathMLBlock (anonymous, flex) at (7,0) size 12x14
     378                      RenderBlock {mn} at (0,4) size 12x10
     379                        RenderText {#text} at (0,-4) size 12x18
     380                          text run at (0,-4) width 12: "31"
     381                RenderTableCell {mtd} at (26,44) size 26x20 [r=2 c=1 rs=1 cs=1]
     382                  RenderMathMLSubSup {msub} at (4,3) size 19x14
     383                    RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     384                      RenderBlock {mi} at (0,0) size 7x9
     385                        RenderText {#text} at (0,-9) size 7x24
     386                          text run at (0,-9) width 7: "c"
     387                    RenderMathMLBlock (anonymous, flex) at (7,0) size 12x14
     388                      RenderBlock {mn} at (0,4) size 12x10
     389                        RenderText {#text} at (0,-4) size 12x18
     390                          text run at (0,-4) width 12: "32"
     391                RenderTableCell {mtd} at (52,44) size 26x20 [r=2 c=2 rs=1 cs=1]
     392                  RenderMathMLSubSup {msub} at (10,3) size 13x14
     393                    RenderMathMLBlock (anonymous, flex) at (0,0) size 7x14 [padding: 0 0 5 0]
     394                      RenderBlock {mi} at (0,0) size 7x9
     395                        RenderText {#text} at (0,-9) size 7x24
     396                          text run at (0,-9) width 7: "c"
     397                    RenderMathMLBlock (anonymous, flex) at (7,0) size 6x14
     398                      RenderBlock {mn} at (0,4) size 6x10
     399                        RenderText {#text} at (0,-4) size 6x18
     400                          text run at (0,-4) width 6: "3"
    365401        RenderText {#text} at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/mathml/presentation/tokenElements-expected.txt

    r126160 r128837  
    88          text run at (0,0) width 291: "Following elements should use a regular font: "
    99        RenderMathMLMath {math} at (291,3) size 58x12 [padding: 0 1 0 1]
    10           RenderInline {mn} at (0,0) size 8x24
    11             RenderText {#text} at (1,-6) size 8x24
    12               text run at (1,-6) width 8: "1"
     10          RenderBlock {mn} at (1,0) size 8x12
     11            RenderText {#text} at (0,-6) size 8x24
     12              text run at (0,-6) width 8: "1"
    1313          RenderMathMLOperator {mo} at (9,0) size 13x12 [padding: 0 1 0 0]
    14             RenderMathMLBlock (inline-block) {mo} at (0,0) size 12x12
    15               RenderText {mo} at (0,-6) size 12x24
    16                 text run at (0,-6) width 12: "\x{2207}"
    17           RenderInline {mtext} at (0,0) size 23x24
    18             RenderText {#text} at (22,-6) size 23x24
    19               text run at (22,-6) width 23: "text"
    20           RenderInline {ms} at (0,0) size 12x24
    21             RenderText {#text} at (45,-6) size 12x24
    22               text run at (45,-6) width 12: "&"
     14            RenderMathMLBlock (flex) {mo} at (0,0) size 12x12
     15              RenderBlock (anonymous) at (0,0) size 12x12
     16                RenderText {mo} at (0,-6) size 12x24
     17                  text run at (0,-6) width 12: "\x{2207}"
     18          RenderBlock {mtext} at (22,1) size 23x11
     19            RenderText {#text} at (0,-7) size 23x24
     20              text run at (0,-7) width 23: "text"
     21          RenderBlock {ms} at (45,0) size 12x12
     22            RenderText {#text} at (0,-6) size 12x24
     23              text run at (0,-6) width 12: "&"
    2324        RenderText {#text} at (0,0) size 0x0
    2425      RenderBlock {p} at (0,34) size 784x18
     
    2627          text run at (0,0) width 241: "Following element should be in italic: "
    2728        RenderMathMLMath {math} at (241,6) size 9x9 [padding: 0 1 0 1]
    28           RenderInline {mi} at (0,0) size 7x24
    29             RenderText {#text} at (1,-9) size 7x24
    30               text run at (1,-9) width 7: "x"
     29          RenderBlock {mi} at (1,0) size 7x9
     30            RenderText {#text} at (0,-9) size 7x24
     31              text run at (0,-9) width 7: "x"
    3132        RenderText {#text} at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/mathml/presentation/under-expected.txt

    r124512 r128837  
    99        RenderMathMLMath {math} at (44,3) size 12x19 [padding: 0 1 0 1]
    1010          RenderMathMLUnderOver {munder} at (1,0) size 10x19
    11             RenderMathMLBlock (anonymous, block) at (0,0) size 10x12
    12               RenderInline {mi} at (0,0) size 10x24
    13                 RenderText {#text} at (0,-6) size 10x24
    14                   text run at (0,-6) width 10: "B"
    15             RenderMathMLBlock (anonymous, block) at (0,12) size 10x7
    16               RenderInline {mi} at (0,0) size 6x18
    17                 RenderText {#text} at (2,-7) size 6x18
    18                   text run at (2,-7) width 6: "x"
     11            RenderBlock {mi} at (0,0) size 10x12
     12              RenderText {#text} at (0,-6) size 10x24
     13                text run at (0,-6) width 10: "B"
     14            RenderBlock {mi} at (2,12) size 5x7
     15              RenderText {#text} at (0,-7) size 5x18
     16                text run at (0,-7) width 5: "x"
    1917        RenderText {#text} at (0,0) size 0x0
    2018      RenderBlock {p} at (0,38) size 784x24
     
    2321        RenderMathMLMath {math} at (44,3) size 12x21 [padding: 0 1 0 1]
    2422          RenderMathMLUnderOver {munder} at (1,0) size 10x21
    25             RenderMathMLBlock (anonymous, block) at (0,0) size 10x12
    26               RenderInline {mi} at (0,0) size 10x24
    27                 RenderText {#text} at (0,-6) size 10x24
    28                   text run at (0,-6) width 10: "B"
    29             RenderMathMLBlock (anonymous, block) at (0,12) size 10x9
    30               RenderInline {mi} at (0,0) size 8x18
    31                 RenderText {#text} at (1,-5) size 8x18
    32                   text run at (1,-5) width 8: "X"
     23            RenderBlock {mi} at (0,0) size 10x12
     24              RenderText {#text} at (0,-6) size 10x24
     25                text run at (0,-6) width 10: "B"
     26            RenderBlock {mi} at (1,12) size 7x9
     27              RenderText {#text} at (0,-5) size 7x18
     28                text run at (0,-5) width 7: "X"
    3329        RenderText {#text} at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/mathml/presentation/underover-expected.txt

    r126160 r128837  
    99        RenderMathMLMath {math} at (92,0) size 12x28 [padding: 0 1 0 1]
    1010          RenderMathMLUnderOver {munderover} at (1,0) size 10x28
    11             RenderMathMLBlock (anonymous, block) at (0,0) size 10x9
    12               RenderInline {mi} at (0,0) size 6x18
    13                 RenderText {#text} at (2,-7) size 6x18
    14                   text run at (2,-7) width 6: "y"
    15             RenderMathMLBlock (anonymous, block) at (0,9) size 10x12
    16               RenderInline {mi} at (0,0) size 10x24
    17                 RenderText {#text} at (0,-6) size 10x24
    18                   text run at (0,-6) width 10: "B"
    19             RenderMathMLBlock (anonymous, block) at (0,21) size 10x7
    20               RenderInline {mi} at (0,0) size 6x18
    21                 RenderText {#text} at (2,-7) size 6x18
    22                   text run at (2,-7) width 6: "x"
     11            RenderBlock {mi} at (0,9) size 10x12
     12              RenderText {#text} at (0,-6) size 10x24
     13                text run at (0,-6) width 10: "B"
     14            RenderBlock {mi} at (2,21) size 5x7
     15              RenderText {#text} at (0,-7) size 5x18
     16                text run at (0,-7) width 5: "x"
     17            RenderBlock {mi} at (2,0) size 5x9
     18              RenderText {#text} at (0,-7) size 5x18
     19                text run at (0,-7) width 5: "y"
    2320        RenderText {#text} at (0,0) size 0x0
    2421      RenderBlock {p} at (0,44) size 784x30
     
    2724        RenderMathMLMath {math} at (92,0) size 12x30 [padding: 0 1 0 1]
    2825          RenderMathMLUnderOver {munderover} at (1,0) size 10x30
    29             RenderMathMLBlock (anonymous, block) at (0,0) size 10x9
    30               RenderInline {mi} at (0,0) size 6x18
    31                 RenderText {#text} at (2,-7) size 6x18
    32                   text run at (2,-7) width 6: "y"
    33             RenderMathMLBlock (anonymous, block) at (0,9) size 10x12
    34               RenderInline {mi} at (0,0) size 10x24
    35                 RenderText {#text} at (0,-6) size 10x24
    36                   text run at (0,-6) width 10: "B"
    37             RenderMathMLBlock (anonymous, block) at (0,21) size 10x9
    38               RenderInline {mi} at (0,0) size 8x18
    39                 RenderText {#text} at (1,-5) size 8x18
    40                   text run at (1,-5) width 8: "X"
     26            RenderBlock {mi} at (0,9) size 10x12
     27              RenderText {#text} at (0,-6) size 10x24
     28                text run at (0,-6) width 10: "B"
     29            RenderBlock {mi} at (1,21) size 7x9
     30              RenderText {#text} at (0,-5) size 7x18
     31                text run at (0,-5) width 7: "X"
     32            RenderBlock {mi} at (2,0) size 5x9
     33              RenderText {#text} at (0,-7) size 5x18
     34                text run at (0,-7) width 5: "y"
    4135        RenderText {#text} at (0,0) size 0x0
    4236      RenderBlock {p} at (0,90) size 784x46
     
    4539        RenderMathMLMath {math} at (92,0) size 24x46 [padding: 0 1 0 1]
    4640          RenderMathMLUnderOver {munderover} at (1,0) size 22x46
    47             RenderMathMLBlock (anonymous, block) at (0,0) size 22x10
    48               RenderMathMLRow {mrow} at (2,0) size 19x10
    49                 RenderInline {mi} at (0,0) size 5x18
    50                   RenderText {#text} at (0,-6) size 5x18
    51                     text run at (0,-6) width 5: "x"
    52                 RenderMathMLOperator {mo} at (5,0) size 9x8 [padding: 0 1 0 0]
    53                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
     41            RenderMathMLOperator {mo} at (0,10) size 22x26
     42              RenderMathMLBlock (flex) {mo} at (0,0) size 22x26
     43                RenderBlock (anonymous) at (0,0) size 22x26
     44                  RenderText {mo} at (0,-6) size 22x36
     45                    text run at (0,-6) width 22: "\x{2211}"
     46            RenderMathMLRow {mrow} at (2,36) size 18x10
     47              RenderBlock {mi} at (0,1) size 3x9
     48                RenderText {#text} at (0,-5) size 3x18
     49                  text run at (0,-5) width 3: "i"
     50              RenderMathMLOperator {mo} at (3,4) size 9x6 [padding: 0 1 0 0]
     51                RenderMathMLBlock (flex) {mo} at (0,0) size 8x6
     52                  RenderBlock (anonymous) at (0,0) size 8x6
     53                    RenderText {mo} at (0,-8) size 8x18
     54                      text run at (0,-8) width 8: "="
     55              RenderBlock {mi} at (12,0) size 6x10
     56                RenderText {#text} at (0,-4) size 6x18
     57                  text run at (0,-4) width 6: "0"
     58            RenderMathMLRow {mrow} at (1,0) size 19x10
     59              RenderBlock {mi} at (0,1) size 5x7
     60                RenderText {#text} at (0,-7) size 5x18
     61                  text run at (0,-7) width 5: "x"
     62              RenderMathMLOperator {mo} at (5,0) size 9x8 [padding: 0 1 0 0]
     63                RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     64                  RenderBlock (anonymous) at (0,0) size 8x8
    5465                    RenderText {mo} at (0,-6) size 8x18
    5566                      text run at (0,-6) width 8: "+"
    56                 RenderInline {mi} at (0,0) size 5x18
    57                   RenderText {#text} at (14,-6) size 5x18
    58                     text run at (14,-6) width 5: "y"
    59             RenderMathMLBlock (anonymous, block) at (0,10) size 22x26
    60               RenderMathMLOperator {mo} at (0,0) size 22x26
    61                 RenderMathMLBlock (inline-block) {mo} at (0,0) size 22x26
    62                   RenderText {mo} at (0,-6) size 22x36
    63                     text run at (0,-6) width 22: "\x{2211}"
    64             RenderMathMLBlock (anonymous, block) at (0,36) size 22x10
    65               RenderMathMLRow {mrow} at (2,0) size 18x10
    66                 RenderInline {mi} at (0,0) size 3x18
    67                   RenderText {#text} at (0,-4) size 3x18
    68                     text run at (0,-4) width 3: "i"
    69                 RenderMathMLOperator {mo} at (3,4) size 9x6 [padding: 0 1 0 0]
    70                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x6
    71                     RenderText {mo} at (0,-8) size 8x18
    72                       text run at (0,-8) width 8: "="
    73                 RenderInline {mi} at (0,0) size 6x18
    74                   RenderText {#text} at (12,-4) size 6x18
    75                     text run at (12,-4) width 6: "0"
     67              RenderBlock {mi} at (14,1) size 5x9
     68                RenderText {#text} at (0,-7) size 5x18
     69                  text run at (0,-7) width 5: "y"
    7670        RenderText {#text} at (0,0) size 0x0
    7771      RenderBlock {p} at (0,152) size 784x47
     
    8074        RenderMathMLMath {math} at (92,0) size 24x47 [padding: 0 1 0 1]
    8175          RenderMathMLUnderOver {munderover} at (1,0) size 22x47
    82             RenderMathMLBlock (anonymous, block) at (0,0) size 22x11
    83               RenderMathMLRow {mrow} at (1,0) size 21x11
    84                 RenderInline {mi} at (0,0) size 7x18
    85                   RenderText {#text} at (0,-5) size 7x18
    86                     text run at (0,-5) width 7: "X"
    87                 RenderMathMLOperator {mo} at (7,1) size 9x8 [padding: 0 1 0 0]
    88                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x8
     76            RenderMathMLOperator {mo} at (0,11) size 22x26
     77              RenderMathMLBlock (flex) {mo} at (0,0) size 22x26
     78                RenderBlock (anonymous) at (0,0) size 22x26
     79                  RenderText {mo} at (0,-6) size 22x36
     80                    text run at (0,-6) width 22: "\x{2211}"
     81            RenderMathMLRow {mrow} at (1,37) size 19x10
     82              RenderBlock {mi} at (0,1) size 4x9
     83                RenderText {#text} at (0,-5) size 4x18
     84                  text run at (0,-5) width 4: "I"
     85              RenderMathMLOperator {mo} at (4,4) size 9x6 [padding: 0 1 0 0]
     86                RenderMathMLBlock (flex) {mo} at (0,0) size 8x6
     87                  RenderBlock (anonymous) at (0,0) size 8x6
     88                    RenderText {mo} at (0,-8) size 8x18
     89                      text run at (0,-8) width 8: "="
     90              RenderBlock {mi} at (13,0) size 6x10
     91                RenderText {#text} at (0,-4) size 6x18
     92                  text run at (0,-4) width 6: "0"
     93            RenderMathMLRow {mrow} at (0,0) size 21x11
     94              RenderBlock {mi} at (0,0) size 7x9
     95                RenderText {#text} at (0,-5) size 7x18
     96                  text run at (0,-5) width 7: "X"
     97              RenderMathMLOperator {mo} at (7,1) size 9x8 [padding: 0 1 0 0]
     98                RenderMathMLBlock (flex) {mo} at (0,0) size 8x8
     99                  RenderBlock (anonymous) at (0,0) size 8x8
    89100                    RenderText {mo} at (0,-6) size 8x18
    90101                      text run at (0,-6) width 8: "+"
    91                 RenderInline {mi} at (0,0) size 5x18
    92                   RenderText {#text} at (16,-5) size 5x18
    93                     text run at (16,-5) width 5: "y"
    94             RenderMathMLBlock (anonymous, block) at (0,11) size 22x26
    95               RenderMathMLOperator {mo} at (0,0) size 22x26
    96                 RenderMathMLBlock (inline-block) {mo} at (0,0) size 22x26
    97                   RenderText {mo} at (0,-6) size 22x36
    98                     text run at (0,-6) width 22: "\x{2211}"
    99             RenderMathMLBlock (anonymous, block) at (0,37) size 22x10
    100               RenderMathMLRow {mrow} at (2,0) size 19x10
    101                 RenderInline {mi} at (0,0) size 4x18
    102                   RenderText {#text} at (0,-4) size 4x18
    103                     text run at (0,-4) width 4: "I"
    104                 RenderMathMLOperator {mo} at (4,4) size 9x6 [padding: 0 1 0 0]
    105                   RenderMathMLBlock (inline-block) {mo} at (0,0) size 8x6
    106                     RenderText {mo} at (0,-8) size 8x18
    107                       text run at (0,-8) width 8: "="
    108                 RenderInline {mi} at (0,0) size 6x18
    109                   RenderText {#text} at (13,-4) size 6x18
    110                     text run at (13,-4) width 6: "0"
     102              RenderBlock {mi} at (16,2) size 5x9
     103                RenderText {#text} at (0,-7) size 5x18
     104                  text run at (0,-7) width 5: "y"
    111105        RenderText {#text} at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/mathml/xHeight-expected.txt

    r124512 r128837  
    88          text run at (0,0) width 301: "The green square should be vertically centered: "
    99        RenderMathMLMath {math} at (301,1) size 29x20 [padding: 0 1 0 1]
    10           RenderInline {mi} at (0,0) size 7x24
    11             RenderText {#text} at (1,-4) size 7x24
    12               text run at (1,-4) width 7: "x"
    13           RenderBlock {div} at (8,0) size 20x20 [bgcolor=#00FF00]
     10          RenderBlock {mi} at (1,5) size 7x9
     11            RenderText {#text} at (0,-9) size 7x24
     12              text run at (0,-9) width 7: "x"
     13          RenderBlock {mtext} at (8,0) size 20x20
     14            RenderBlock {div} at (0,0) size 20x20 [bgcolor=#00FF00]
     15            RenderText {#text} at (0,0) size 0x0
    1416        RenderText {#text} at (0,0) size 0x0
  • trunk/Source/WebCore/ChangeLog

    r128835 r128837  
     12012-09-17  David Barton  <dbarton@mathscribe.com>
     2
     3        Convert MathML to use flexboxes
     4        https://bugs.webkit.org/show_bug.cgi?id=96843
     5
     6        Reviewed by Eric Seidel.
     7
     8        Using the CSS Flexible Box Model simplifies MathML in many ways. Control over alignment, row vs.
     9        column layout, and child layout order are all much easier. Complexities involving floats,
     10        continuations, and most anonymous boxes are eliminated, as are their potential for crashes and
     11        security vulnerabilities.
     12
     13        In a flexbox, column alignment is done with align-items or align-self, instead of text-align.
     14        vertical-align and baselinePosition() are replaced by the firstLineBoxBaseline() virtual
     15        function.
     16
     17        Tested by existing tests.
     18
     19        * css/mathml.css:
     20        (math):
     21        (math[display="block"]):
     22        (mo, mrow, mfenced, mfrac, msub, msup, msubsup, munder, mover, munderover, msqrt, mroot):
     23        (math, mrow, mfenced, msqrt, mroot):
     24        (msqrt > *):
     25        (mo, mfrac, munder, mover, munderover):
     26        (munder, mover, munderover):
     27        (mfrac > *):
     28        (mfrac[numalign="left"] > :first-child):
     29        (mfrac[numalign="right"] > :first-child):
     30        (mfrac[denomalign="left"] > :last-child):
     31        (mfrac[denomalign="right"] > :last-child):
     32        (msubsup > :last-child, mover > :last-child, munderover > :last-child):
     33        (msub > * + *, msup > * + *, msubsup > * + *, munder > * + *, mover > * + *, munderover > * + *):
     34        (mroot):
     35        (mroot > * + *):
     36        (mtable):
     37       
     38        * mathml/MathMLInlineContainerElement.cpp:
     39        (WebCore::MathMLInlineContainerElement::createRenderer):
     40        * mathml/mathtags.in:
     41       
     42        * rendering/mathml/RenderMathMLBlock.cpp:
     43        (WebCore::RenderMathMLBlock::RenderMathMLBlock):
     44        (WebCore::RenderMathMLBlock::computePreferredLogicalWidths):
     45        (WebCore::RenderMathMLBlock::baselinePosition):
     46        (WebCore::RenderMathMLBlock::renderName):
     47        (WebCore::RenderMathMLBlock::paint):
     48        (WebCore::RenderMathMLTable::firstLineBoxBaseline):
     49        * rendering/mathml/RenderMathMLBlock.h:
     50        (RenderMathMLBlock):
     51        (RenderMathMLTable):
     52        (WebCore::RenderMathMLTable::RenderMathMLTable):
     53            - Change RenderMathMLBlock's base class to RenderFlexibleBox, and its display to FLEX or INLINE_FLEX.
     54            - Add RenderMathMLTable for its firstLineBoxBaseline() function, like { vertical-align: middle }.
     55       
     56        * rendering/mathml/RenderMathMLFenced.cpp:
     57        (WebCore::RenderMathMLFenced::createMathMLOperator):
     58        (WebCore::RenderMathMLFenced::makeFences):
     59            - Use RenderMathMLRow::addChild as a more robust name for RenderBlock::addChild.
     60        (WebCore::RenderMathMLFenced::addChild):
     61            - All inline children of a flexbox are treated as blocks automatically.
     62       
     63        * rendering/mathml/RenderMathMLFraction.cpp:
     64        (WebCore::RenderMathMLFraction::fixChildStyle):
     65        (WebCore::RenderMathMLFraction::updateFromElement):
     66            - numalign and denomalign attributes are now handled by mathml.css.
     67        (WebCore::RenderMathMLFraction::addChild):
     68        (WebCore::RenderMathMLFraction::layout):
     69        (WebCore::RenderMathMLFraction::firstLineBoxBaseline):
     70        * rendering/mathml/RenderMathMLFraction.h:
     71        (RenderMathMLFraction):
     72       
     73        * rendering/mathml/RenderMathMLOperator.cpp:
     74        (WebCore::RenderMathMLOperator::updateFromElement):
     75        (WebCore::RenderMathMLOperator::createStackableStyle):
     76        (WebCore::RenderMathMLOperator::firstLineBoxBaseline):
     77        * rendering/mathml/RenderMathMLOperator.h:
     78        * rendering/mathml/RenderMathMLRow.cpp:
     79        (WebCore::RenderMathMLRow::createAnonymousWithParentRenderer):
     80       
     81        * rendering/mathml/RenderMathMLSubSup.cpp:
     82        (WebCore::RenderMathMLSubSup::RenderMathMLSubSup):
     83        (WebCore::RenderMathMLSubSup::fixScriptsStyle):
     84        (WebCore::RenderMathMLSubSup::addChild):
     85        (WebCore::RenderMathMLSubSup::styleDidChange):
     86        (WebCore::RenderMathMLSubSup::layout):
     87        * rendering/mathml/RenderMathMLSubSup.h:
     88            - Rename Sup to Super, to make it more readable vs. Sub.
     89            - Instead of vertical-align, msub and msup now use the m_scripts anonymous box like msubsup does.
     90            - Individual anonymous block wrappers are no longer needed around the superscript and subscript to
     91              lay them out in a column.
     92            - Handle msub and msup layout, and improve msubsup layout, by requiring a superscript's baseline
     93              to be at least (int) fontSize / 3 + 1 above the main baseline, and a subscript's baseline to be
     94              at least (int) fontSize / 5 + 1 below it.
     95       
     96        * rendering/mathml/RenderMathMLUnderOver.cpp:
     97        (WebCore::RenderMathMLUnderOver::unembellishedOperator):
     98        (WebCore::RenderMathMLUnderOver::firstLineBoxBaseline):
     99        * rendering/mathml/RenderMathMLUnderOver.h:
     100        (RenderMathMLUnderOver):
     101            - RenderMathMLUnderOver no longer needs to use anonymous wrappers for column layout. Centering and
     102              child layout order (overscript first) are also handled by mathml.css.
     103
    11042012-09-17  Ryuan Choi  <ryuan.choi@samsung.com>
    2105
  • trunk/Source/WebCore/css/mathml.css

    r127769 r128837  
    1111math {
    1212    font-family: STIXGeneral, Symbol, "Times New Roman", sans-serif;
    13     display: inline-block;
    14     padding: 0px;
    15     text-align: left;
     13    display: -webkit-inline-flex !important;
    1614    padding-left: 1px;
    1715    padding-right: 1px;
     
    1917
    2018math[display="block"] {
    21     display: block;
     19    display: -webkit-flex !important;
     20    -webkit-justify-content: center;
    2221    page-break-inside: avoid;
    23     margin-bottom: 1em;
    24     text-align: center;
    25     margin-left: auto;
    26     margin-right: auto;
     22    /* -webkit-margin-before: 1em; -- FIXME: Ask www-math for a default MathML stylesheet, including this (or margin-top). */
     23    -webkit-margin-after: 1em;
    2724}
    2825
    2926mo, mrow, mfenced, mfrac, msub, msup, msubsup, munder, mover, munderover, msqrt, mroot {
    30     display: inline-block;
    31     white-space: nowrap;
     27    display: -webkit-inline-flex !important;
     28}
     29math, mrow, mfenced, msqrt, mroot {
     30    -webkit-align-items: baseline;
     31}
     32msqrt > * { /* This rule is needed because of <msqrt>'s anonymous <mrow>. */
     33    -webkit-align-self: baseline;
     34}
     35mo, mfrac, munder, mover, munderover {
     36    -webkit-flex-direction: column;
     37}
     38munder, mover, munderover {
     39    -webkit-align-items: center;
     40}
     41mfrac > * {
     42    -webkit-align-self: center;
     43}
     44mfrac[numalign="left"] > :first-child {
     45    -webkit-align-self: flex-start;
     46}
     47mfrac[numalign="right"] > :first-child {
     48    -webkit-align-self: flex-end;
     49}
     50mfrac[denomalign="left"] > :last-child {
     51    -webkit-align-self: flex-start;
     52}
     53mfrac[denomalign="right"] > :last-child {
     54    -webkit-align-self: flex-end;
     55}
     56msubsup > :last-child, mover > :last-child, munderover > :last-child {
     57    -webkit-order: -1;
     58}
     59
     60msub > * + *, msup > * + *, msubsup > * + *, munder > * + *, mover > * + *, munderover > * + * {
     61    font-size: 0.75em; /* FIXME: MathML standard is 0.71em */
    3262}
    3363
     
    4676}
    4777
    48 msub > * + * {
    49     vertical-align: sub;
    50     font-size: 0.75em;
    51 }
    52 
    53 msup > * + * {
    54     vertical-align: super;
    55     font-size: 0.75em;
    56 }
    57 
    5878msubsup > * {
    5979    padding: 0px;
    6080}
    6181
    62 msubsup > * + * {
    63     font-size: 0.75em;
    64 }
    65 
    66 munderover > * + *, mover > * + *, munder > * + * {
    67     font-size: 0.75em;
    68 }
    69 
    7082mo, mn, mi, mtext {
    7183    padding: 0px;
     
    7688}
    7789
    78 math[mathvariant="normal"], mstyle[mathvariant="normal"], mo[mathvariant="normal"], mn[mathvariant="normal"], mi[mathvariant="normal"], mtext[mathvariant="normal"], mspace[mathvariant="normal"], ms[mathvariant="normal"] {
    79     font-style: normal;
    80     font-weight: normal;
    81 }
    82 
    83 math[mathvariant="bold"], mstyle[mathvariant="bold"], mo[mathvariant="bold"], mn[mathvariant="bold"], mi[mathvariant="bold"], mtext[mathvariant="bold"], mspace[mathvariant="bold"], ms[mathvariant="bold"] {
    84     font-style: normal;
    85     font-weight: bold;
    86 }
    87 
    88 math[mathvariant="italic"], mstyle[mathvariant="italic"], mo[mathvariant="italic"], mn[mathvariant="italic"], mi[mathvariant="italic"], mtext[mathvariant="italic"], mspace[mathvariant="italic"], ms[mathvariant="italic"] {
    89     font-style: italic;
    90     font-weight: normal;
    91 }
    92 
    93 math[mathvariant="bold-italic"], mstyle[mathvariant="bold-italic"], mo[mathvariant="bold-italic"], mn[mathvariant="bold-italic"], mi[mathvariant="bold-italic"], mtext[mathvariant="bold-italic"], mspace[mathvariant="bold-italic"], ms[mathvariant="bold-italic"] {
    94     font-weight: bold;
    95     font-style: italic;
    96 }
    97 
    98 math[mathsize="small"], mstyle[mathsize="small"], mo[mathsize="small"], mn[mathsize="small"], mi[mathsize="small"], mtext[mathsize="small"], mspace[mathsize="small"], ms[mathsize="small"] {
    99     font-size: 0.75em;
    100 }
    101 
    102 math[mathsize="normal"], mstyle[mathsize="normal"], mo[mathsize="normal"], mn[mathsize="normal"], mi[mathsize="normal"], mtext[mathsize="normal"], mspace[mathsize="normal"], ms[mathsize="normal"] {
    103     font-size: 1em;
    104 }
    105 
    106 math[mathsize="big"], mstyle[mathsize="big"], mo[mathsize="big"], mn[mathsize="big"], mi[mathsize="big"], mtext[mathsize="big"], mspace[mathsize="big"], ms[mathsize="big"] {
    107     font-size: 1.5em;
    108 }
    109  
    110 annotation, annotation-xml {
    111     display: none;
    112 }
    113 
    114 mphantom {
    115     visibility: hidden;
    116 }
    117 
    118 merror {
    119     outline: solid thin red;
    120     font-weight: bold;
    121     font-family: sans-serif;
    122     background-color: lightYellow;
    123 }
    124 
    12590mroot {
    12691    position: relative;
    12792}
    128 
    12993mroot > * + * {
    13094    font-size: 0.75em;
     
    137101}
    138102
     103math[mathvariant="normal"], mstyle[mathvariant="normal"], mo[mathvariant="normal"], mn[mathvariant="normal"], mi[mathvariant="normal"], mtext[mathvariant="normal"], mspace[mathvariant="normal"], ms[mathvariant="normal"] {
     104    font-style: normal;
     105    font-weight: normal;
     106}
     107
     108math[mathvariant="bold"], mstyle[mathvariant="bold"], mo[mathvariant="bold"], mn[mathvariant="bold"], mi[mathvariant="bold"], mtext[mathvariant="bold"], mspace[mathvariant="bold"], ms[mathvariant="bold"] {
     109    font-style: normal;
     110    font-weight: bold;
     111}
     112
     113math[mathvariant="italic"], mstyle[mathvariant="italic"], mo[mathvariant="italic"], mn[mathvariant="italic"], mi[mathvariant="italic"], mtext[mathvariant="italic"], mspace[mathvariant="italic"], ms[mathvariant="italic"] {
     114    font-style: italic;
     115    font-weight: normal;
     116}
     117
     118math[mathvariant="bold-italic"], mstyle[mathvariant="bold-italic"], mo[mathvariant="bold-italic"], mn[mathvariant="bold-italic"], mi[mathvariant="bold-italic"], mtext[mathvariant="bold-italic"], mspace[mathvariant="bold-italic"], ms[mathvariant="bold-italic"] {
     119    font-weight: bold;
     120    font-style: italic;
     121}
     122
     123math[mathsize="small"], mstyle[mathsize="small"], mo[mathsize="small"], mn[mathsize="small"], mi[mathsize="small"], mtext[mathsize="small"], mspace[mathsize="small"], ms[mathsize="small"] {
     124    font-size: 0.75em;
     125}
     126
     127math[mathsize="normal"], mstyle[mathsize="normal"], mo[mathsize="normal"], mn[mathsize="normal"], mi[mathsize="normal"], mtext[mathsize="normal"], mspace[mathsize="normal"], ms[mathsize="normal"] {
     128    font-size: 1em;
     129}
     130
     131math[mathsize="big"], mstyle[mathsize="big"], mo[mathsize="big"], mn[mathsize="big"], mi[mathsize="big"], mtext[mathsize="big"], mspace[mathsize="big"], ms[mathsize="big"] {
     132    font-size: 1.5em;
     133}
     134 
     135annotation, annotation-xml {
     136    display: none;
     137}
     138
     139mphantom {
     140    visibility: hidden;
     141}
     142
     143merror {
     144    outline: solid thin red;
     145    font-weight: bold;
     146    font-family: sans-serif;
     147    background-color: lightYellow;
     148}
     149
    139150mtable {
    140151    display: inline-table;
    141152    text-align: center;
    142     vertical-align: middle;
    143153}
    144154
  • trunk/Source/WebCore/mathml/MathMLInlineContainerElement.cpp

    r95901 r128837  
    7979    if (hasLocalName(mfencedTag))
    8080        return new (arena) RenderMathMLFenced(this);
     81    if (hasLocalName(mtableTag))
     82        return new (arena) RenderMathMLTable(this);
    8183
    8284    return new (arena) RenderMathMLBlock(this);
  • trunk/Source/WebCore/mathml/mathtags.in

    r92890 r128837  
    2020msub interfaceName=MathMLInlineContainerElement
    2121msup interfaceName=MathMLInlineContainerElement
     22mtable interfaceName=MathMLInlineContainerElement
    2223
    2324#if 0 // Curently only for MathMLNames used by HTMLTreeBuilder.
  • trunk/Source/WebCore/rendering/mathml/RenderMathMLBlock.cpp

    r124512 r128837  
    4343   
    4444RenderMathMLBlock::RenderMathMLBlock(Node* container)
    45     : RenderBlock(container)
     45    : RenderFlexibleBox(container)
    4646    , m_intrinsicPaddingBefore(0)
    4747    , m_intrinsicPaddingAfter(0)
     
    145145    ASSERT(preferredLogicalWidthsDirty());
    146146    m_preferredLogicalHeight = preferredLogicalHeightUnset;
    147     RenderBlock::computePreferredLogicalWidths();
     147    RenderFlexibleBox::computePreferredLogicalWidths();
    148148}
    149149
     
    205205    if (linePositionMode == PositionOfInteriorLineBoxes)
    206206        return 0;
    207     return RenderBlock::baselinePosition(baselineType, firstLine, direction, linePositionMode);
     207   
     208    LayoutUnit baseline = firstLineBoxBaseline(); // FIXME: This may be unnecessary after flex baselines are implemented (https://bugs.webkit.org/show_bug.cgi?id=96188).
     209    if (baseline != -1)
     210        return baseline;
     211   
     212    return RenderFlexibleBox::baselinePosition(baselineType, firstLine, direction, linePositionMode);
    208213}
    209214
     
    211216{
    212217    EDisplay display = style()->display();
    213     if (display == BLOCK)
    214         return isAnonymous() ? "RenderMathMLBlock (anonymous, block)" : "RenderMathMLBlock (block)";
    215     if (display == INLINE_BLOCK)
    216         return isAnonymous() ? "RenderMathMLBlock (anonymous, inline-block)" : "RenderMathMLBlock (inline-block)";
     218    if (display == FLEX)
     219        return isAnonymous() ? "RenderMathMLBlock (anonymous, flex)" : "RenderMathMLBlock (flex)";
     220    if (display == INLINE_FLEX)
     221        return isAnonymous() ? "RenderMathMLBlock (anonymous, inline-flex)" : "RenderMathMLBlock (inline-flex)";
    217222    // |display| should be one of the above.
    218223    ASSERT_NOT_REACHED();
     
    223228void RenderMathMLBlock::paint(PaintInfo& info, const LayoutPoint& paintOffset)
    224229{
    225     RenderBlock::paint(info, paintOffset);
     230    RenderFlexibleBox::paint(info, paintOffset);
    226231   
    227232    if (info.context->paintingDisabled() || info.phase != PaintPhaseForeground)
     
    255260#endif // ENABLE(DEBUG_MATH_LAYOUT)
    256261
     262LayoutUnit RenderMathMLTable::firstLineBoxBaseline() const
     263{
     264    // In legal MathML, we'll have a MathML parent. That RenderFlexibleBox parent will use our firstLineBoxBaseline() for baseline alignment, per
     265    // http://dev.w3.org/csswg/css3-flexbox/#flex-baselines. We want to vertically center an <mtable>, such as a matrix. Essentially the whole <mtable> element fits on a
     266    // single line, whose baseline gives this centering. This is different than RenderTable::firstLineBoxBaseline, which returns the baseline of the first row of a <table>.
     267    return (logicalHeight() + style()->fontMetrics().xHeight()) / 2;
     268}
     269
    257270}   
    258271
  • trunk/Source/WebCore/rendering/mathml/RenderMathMLBlock.h

    r126359 r128837  
    3030#if ENABLE(MATHML)
    3131
    32 #include "RenderBlock.h"
     32#include "RenderFlexibleBox.h"
     33#include "RenderTable.h"
    3334#include "StyleInheritedData.h"
    3435
     
    3940class RenderMathMLOperator;
    4041
    41 class RenderMathMLBlock : public RenderBlock {
     42class RenderMathMLBlock : public RenderFlexibleBox {
    4243public:
    4344    RenderMathMLBlock(Node* container);
     
    8586   
    8687    // Create a new RenderMathMLBlock, with a new style inheriting from this->style().
    87     RenderMathMLBlock* createAnonymousMathMLBlock(EDisplay = BLOCK);
     88    RenderMathMLBlock* createAnonymousMathMLBlock(EDisplay = FLEX);
    8889   
    8990private:
     
    120121void toRenderMathMLBlock(const RenderMathMLBlock*);
    121122
     123class RenderMathMLTable : public RenderTable {
     124public:
     125    explicit RenderMathMLTable(Node* node) : RenderTable(node) { }
     126   
     127    virtual LayoutUnit firstLineBoxBaseline() const OVERRIDE;
     128   
     129private:
     130    virtual const char* renderName() const OVERRIDE { return "RenderMathMLTable"; }
     131};
     132
    122133}
    123134
  • trunk/Source/WebCore/rendering/mathml/RenderMathMLFenced.cpp

    r120492 r128837  
    8484RenderMathMLOperator* RenderMathMLFenced::createMathMLOperator(UChar uChar)
    8585{
    86     RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(style(), INLINE_BLOCK);
     86    RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(style(), FLEX);
     87    newStyle->setFlexDirection(FlowColumn);
    8788    newStyle->setPaddingRight(Length(static_cast<int>(gOperatorPadding * style()->fontSize()), Fixed));
    8889    RenderMathMLOperator* newOperator = new (renderArena()) RenderMathMLOperator(node() /* "almost anonymous" */, uChar);
     
    9394void RenderMathMLFenced::makeFences()
    9495{
    95     RenderBlock::addChild(createMathMLOperator(m_open), firstChild());
     96    RenderMathMLRow::addChild(createMathMLOperator(m_open), firstChild());
    9697    m_closeFenceRenderer = createMathMLOperator(m_close);
    97     RenderBlock::addChild(m_closeFenceRenderer);
     98    RenderMathMLRow::addChild(m_closeFenceRenderer);
    9899}
    99100
     
    133134    }
    134135   
    135     // If we have a block, we'll wrap it in an inline-block.
    136     if (child->isBlockFlow() && child->style()->display() != INLINE_BLOCK) {
    137         // Block objects wrapper.
    138         RenderMathMLBlock* block = createAnonymousMathMLBlock(INLINE_BLOCK);
    139        
    140         block->addChild(child);
    141         child = block;
    142     }
    143    
    144136    if (beforeChild) {
    145137        // Adding |x| before an existing |y| e.g. in element (y) - first insert our new child |x|, then its separator, to get (x, y).
    146         RenderBlock::addChild(child, beforeChild);
     138        RenderMathMLRow::addChild(child, beforeChild);
    147139        if (separatorRenderer)
    148             RenderBlock::addChild(separatorRenderer, beforeChild);
     140            RenderMathMLRow::addChild(separatorRenderer, beforeChild);
    149141    } else {
    150142        // Adding |y| at the end of an existing element e.g. (x) - insert the separator first before the closing fence, then |y|, to get (x, y).
    151143        if (separatorRenderer)
    152             RenderBlock::addChild(separatorRenderer, m_closeFenceRenderer);
    153         RenderBlock::addChild(child, m_closeFenceRenderer);
     144            RenderMathMLRow::addChild(separatorRenderer, m_closeFenceRenderer);
     145        RenderMathMLRow::addChild(child, m_closeFenceRenderer);
    154146    }
    155147}
  • trunk/Source/WebCore/rendering/mathml/RenderMathMLFraction.cpp

    r124512 r128837  
    5656{
    5757    ASSERT(child->isAnonymous() && child->style()->refCount() == 1);
    58     child->style()->setTextAlign(CENTER);
     58    child->style()->setFlexDirection(FlowColumn);
    5959    Length pad(static_cast<int>(style()->fontSize() * gHorizontalPad), Fixed);
    6060    child->style()->setPaddingLeft(pad);
     
    7373   
    7474    RenderObject* numeratorWrapper = firstChild();
    75     String nalign = fraction->getAttribute(MathMLNames::numalignAttr);
    76     if (equalIgnoringCase(nalign, "left"))
    77         numeratorWrapper->style()->setTextAlign(LEFT);
    78     else if (equalIgnoringCase(nalign, "right"))
    79         numeratorWrapper->style()->setTextAlign(RIGHT);
    80     else
    81         numeratorWrapper->style()->setTextAlign(CENTER);
    82    
    8375    RenderObject* denominatorWrapper = numeratorWrapper->nextSibling();
    8476    if (!denominatorWrapper)
    8577        return;
    86    
    87     String dalign = fraction->getAttribute(MathMLNames::denomalignAttr);
    88     if (equalIgnoringCase(dalign, "left"))
    89         denominatorWrapper->style()->setTextAlign(LEFT);
    90     else if (equalIgnoringCase(dalign, "right"))
    91         denominatorWrapper->style()->setTextAlign(RIGHT);
    92     else
    93         denominatorWrapper->style()->setTextAlign(CENTER);
    9478   
    9579    // FIXME: parse units
     
    11397    RenderMathMLBlock* row = createAnonymousMathMLBlock();
    11498   
    115     RenderBlock::addChild(row, beforeChild);
     99    RenderMathMLBlock::addChild(row, beforeChild);
    116100    row->addChild(child);
    117101   
     
    148132        m_lineThickness *= ceilf(gFractionBarWidth * style()->fontSize());
    149133
    150     RenderBlock::layout();
     134    RenderMathMLBlock::layout();
    151135}
    152136
     
    186170}
    187171
    188 LayoutUnit RenderMathMLFraction::baselinePosition(FontBaseline, bool firstLine, LineDirectionMode lineDirection, LinePositionMode linePositionMode) const
     172LayoutUnit RenderMathMLFraction::firstLineBoxBaseline() const
    189173{
    190174    if (firstChild() && firstChild()->isRenderMathMLBlock()) {
     
    198182        return numeratorWrapper->pixelSnappedOffsetHeight() + shift;
    199183    }
    200     return RenderMathMLBlock::baselinePosition(AlphabeticBaseline, firstLine, lineDirection, linePositionMode);
     184    return RenderMathMLBlock::firstLineBoxBaseline();
    201185}
    202186
  • trunk/Source/WebCore/rendering/mathml/RenderMathMLFraction.h

    r120492 r128837  
    4242    virtual RenderMathMLOperator* unembellishedOperator();
    4343   
    44     virtual LayoutUnit baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
     44    virtual LayoutUnit firstLineBoxBaseline() const OVERRIDE;
    4545    virtual void paint(PaintInfo&, const LayoutPoint&);
    4646protected:
  • trunk/Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp

    r124512 r128837  
    224224        RefPtr<RenderStyle> newStyle = RenderStyle::create();
    225225        newStyle->inheritFrom(style());
    226         newStyle->setDisplay(INLINE_BLOCK);
    227         newStyle->setVerticalAlign(BASELINE);
     226        newStyle->setDisplay(FLEX);
    228227       
    229228        // Check for a stretchable character that is under the minimum height and use the
     
    336335    RefPtr<RenderStyle> newStyle = RenderStyle::create();
    337336    newStyle->inheritFrom(style());
    338     newStyle->setDisplay(BLOCK);
     337    newStyle->setDisplay(FLEX);
    339338   
    340339    FontDescription desc = style()->fontDescription();
     
    383382}
    384383
    385 LayoutUnit RenderMathMLOperator::baselinePosition(FontBaseline, bool firstLine, LineDirectionMode lineDirection, LinePositionMode linePositionMode) const
     384LayoutUnit RenderMathMLOperator::firstLineBoxBaseline() const
    386385{
    387386    if (m_isStacked)
    388387        return m_stretchHeight * 2 / 3 - (m_stretchHeight - static_cast<int>(m_stretchHeight / gOperatorExpansion)) / 2;   
    389     return RenderMathMLBlock::baselinePosition(AlphabeticBaseline, firstLine, lineDirection, linePositionMode);
     388    return RenderMathMLBlock::firstLineBoxBaseline();
    390389}
    391390   
  • trunk/Source/WebCore/rendering/mathml/RenderMathMLOperator.h

    r120492 r128837  
    4646    void stretchToHeight(int pixelHeight);
    4747   
    48     virtual LayoutUnit baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
     48    virtual LayoutUnit firstLineBoxBaseline() const OVERRIDE;
    4949       
    5050protected:
  • trunk/Source/WebCore/rendering/mathml/RenderMathMLRow.cpp

    r116174 r128837  
    4545RenderMathMLRow* RenderMathMLRow::createAnonymousWithParentRenderer(const RenderObject* parent)
    4646{
    47     RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(parent->style(), INLINE_BLOCK);
     47    RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(parent->style(), FLEX);
    4848    RenderMathMLRow* newMRow = new (parent->renderArena()) RenderMathMLRow(parent->document() /* is anonymous */);
    4949    newMRow->setStyle(newStyle.release());
  • trunk/Source/WebCore/rendering/mathml/RenderMathMLSubSup.cpp

    r125925 r128837  
    4646        m_kind = Sub;
    4747    else if (element->hasLocalName(MathMLNames::msupTag))
    48         m_kind = Sup;
     48        m_kind = Super;
    4949    else {
    5050        ASSERT(element->hasLocalName(MathMLNames::msubsupTag));
     
    6868    ASSERT(m_scripts && m_scripts->style()->refCount() == 1);
    6969    RenderStyle* scriptsStyle = m_scripts->style();
    70     scriptsStyle->setVerticalAlign(TOP);
    71     scriptsStyle->setMarginLeft(Length(gSubsupScriptMargin, Fixed));
    72     scriptsStyle->setTextAlign(LEFT);
     70    scriptsStyle->setFlexDirection(FlowColumn);
     71    scriptsStyle->setJustifyContent(m_kind == Sub ? JustifyFlexEnd : m_kind == Super ? JustifyFlexStart : JustifySpaceBetween);
     72    if (m_kind == SubSup)
     73        scriptsStyle->setMarginLeft(Length(gSubsupScriptMargin, Fixed));
    7374    // Set this wrapper's font-size for its line-height & baseline position, for its children.
    7475    scriptsStyle->setFontSize(static_cast<int>(0.75 * style()->fontSize()));
    7576}
    7677
     78// FIXME: Handle arbitrary addChild/removeChild correctly throughout MathML, e.g. add/remove/add a base child here.
    7779void RenderMathMLSubSup::addChild(RenderObject* child, RenderObject* beforeChild)
    7880{
     
    8284    if (childElement && !childElement->previousElementSibling()) {
    8385        // Position 1 is always the base of the msub/msup/msubsup.
    84         RenderMathMLBlock* baseWrapper = createAnonymousMathMLBlock(INLINE_BLOCK);
     86        RenderMathMLBlock* baseWrapper = createAnonymousMathMLBlock();
    8587        RenderMathMLBlock::addChild(baseWrapper, firstChild());
    8688        baseWrapper->addChild(child);
    8789           
    8890        // Make sure we have a script block for rendering.
    89         if (m_kind == SubSup && !m_scripts) {
    90             m_scripts = createAnonymousMathMLBlock(INLINE_BLOCK);
     91        if (!m_scripts) {
     92            m_scripts = createAnonymousMathMLBlock();
    9193            fixScriptsStyle();
    9294            RenderMathMLBlock::addChild(m_scripts, beforeChild);
    9395        }
    94     } else {
    95         if (m_kind == SubSup) {
    96             ASSERT(childElement);
    97             if (!childElement)
    98                 return;
    99 
    100             RenderMathMLBlock* script = m_scripts->createAnonymousMathMLBlock();
    101 
    102             // The order is always backwards so the first script is the subscript and the superscript
    103             // is last. That means the superscript is the first to render vertically.
    104             Element* previousSibling = childElement->previousElementSibling();
    105             if (previousSibling && !previousSibling->previousElementSibling())
    106                 m_scripts->addChild(script);
    107             else                 
    108                 m_scripts->addChild(script, m_scripts->firstChild());
    109            
    110             script->addChild(child);
    111         } else
    112             RenderMathMLBlock::addChild(child, beforeChild);
    113     }
     96    } else
     97        m_scripts->addChild(child, beforeChild ? m_scripts->firstChild() : 0);
    11498}
    11599
     
    118102    RenderMathMLBlock::styleDidChange(diff, oldStyle);
    119103   
    120     if (m_scripts) {
     104    if (m_scripts)
    121105        fixScriptsStyle();
    122         for (RenderObject* script = m_scripts->firstChild(); script; script = script->nextSibling()) {
    123             ASSERT(script->isAnonymous() && script->style()->refCount() == 1);
    124             script->style()->inheritFrom(m_scripts->style());
    125         }
    126     }
    127106}
    128107
     
    137116void RenderMathMLSubSup::layout()
    138117{
    139     RenderBlock::layout();
     118    RenderMathMLBlock::layout();
    140119   
    141     if (m_kind != SubSup || !m_scripts)
     120    RenderMathMLBlock* baseWrapper = toRenderMathMLBlock(firstChild());
     121    if (!baseWrapper || !m_scripts)
    142122        return;
    143     RenderMathMLBlock* baseWrapper = toRenderMathMLBlock(firstChild());
    144     RenderMathMLBlock* superscriptWrapper = toRenderMathMLBlock(m_scripts->firstChild());
    145     RenderMathMLBlock* subscriptWrapper = toRenderMathMLBlock(m_scripts->lastChild());
    146     if (!baseWrapper || !superscriptWrapper || !subscriptWrapper || superscriptWrapper == subscriptWrapper)
     123    RenderBox* base = baseWrapper->firstChildBox();
     124    if (!base)
    147125        return;
    148126   
    149     LayoutUnit baseWrapperBaseline = toRenderBox(firstChild())->firstLineBoxBaseline();
    150     LayoutUnit baseBaseline = baseWrapperBaseline - baseWrapper->paddingBefore();
    151     LayoutUnit baseExtendUnderBaseline = baseWrapper->logicalHeight() - baseWrapperBaseline;
    152     LayoutUnit axis = style()->fontMetrics().xHeight() / 2;
    153     LayoutUnit superscriptHeight = superscriptWrapper->logicalHeight() - superscriptWrapper->paddingAfter();
    154     LayoutUnit subscriptHeight = subscriptWrapper->logicalHeight();
    155    
    156     // Our layout rules are: Don't let the superscript go below the "axis" (half x-height above the
     127    // Our layout rules include: Don't let the superscript go below the "axis" (half x-height above the
    157128    // baseline), or the subscript above the axis. Also, don't let the superscript's top edge be
    158129    // below the base's top edge, or the subscript's bottom edge above the base's bottom edge.
     
    161132    // heuristics from TeX or elsewhere. See https://bugs.webkit.org/show_bug.cgi?id=79274#c5.
    162133   
    163     // Above we did scriptsStyle->setVerticalAlign(TOP) for mscripts' style, so the superscript's
    164     // top edge will equal the top edge of the base's padding.
    165     LayoutUnit basePaddingTop = superscriptHeight + axis - baseBaseline;
    166     // If basePaddingTop is positive, it's indeed the base's padding-top that we need. If it's negative,
    167     // then we should instead use its absolute value to pad the bottom of the superscript, to get the
    168     // superscript's bottom edge down to the axis. First we compute how much more we need to shift the
    169     // subscript down, once its top edge is at the axis.
    170     LayoutUnit superPaddingBottom = max<LayoutUnit>(baseExtendUnderBaseline + axis - subscriptHeight, 0);
    171     if (basePaddingTop < 0) {
    172         superPaddingBottom += -basePaddingTop;
    173         basePaddingTop = 0;
     134    LayoutUnit baseHeight = base->logicalHeight();
     135    LayoutUnit baseBaseline = base->firstLineBoxBaseline();
     136    if (baseBaseline == -1)
     137        baseBaseline = baseHeight;
     138    LayoutUnit axis = style()->fontMetrics().xHeight() / 2;
     139    int fontSize = style()->fontSize();
     140   
     141    if (RenderBox* superscript = m_kind == Sub ? 0 : m_scripts->lastChildBox()) {
     142        LayoutUnit superscriptHeight = superscript->logicalHeight();
     143        LayoutUnit superscriptBaseline = superscript->firstLineBoxBaseline();
     144        if (superscriptBaseline == -1)
     145            superscriptBaseline = superscriptHeight;
     146        LayoutUnit minBaseline = max<LayoutUnit>(fontSize / 3 + 1 + superscriptBaseline, superscriptHeight + axis);
     147        baseWrapper->style()->setPaddingTop(Length(max<LayoutUnit>(minBaseline - baseBaseline, 0), Fixed));
     148    }
     149   
     150    if (RenderBox* subscript = m_kind == Super ? 0 : m_scripts->firstChildBox()) {
     151        LayoutUnit subscriptHeight = subscript->logicalHeight();
     152        LayoutUnit subscriptBaseline = subscript->firstLineBoxBaseline();
     153        if (subscriptBaseline == -1)
     154            subscriptBaseline = subscriptHeight;
     155        LayoutUnit baseExtendUnderBaseline = baseHeight - baseBaseline;
     156        LayoutUnit subscriptUnderItsBaseline = subscriptHeight - subscriptBaseline;
     157        LayoutUnit minExtendUnderBaseline = max<LayoutUnit>(fontSize / 5 + 1 + subscriptUnderItsBaseline, subscriptHeight - axis);
     158        baseWrapper->style()->setPaddingBottom(Length(max<LayoutUnit>(minExtendUnderBaseline - baseExtendUnderBaseline, 0), Fixed));
    174159    }
    175160   
    176161    setChildNeedsLayout(true, MarkOnlyThis);
    177    
    178     baseWrapper->style()->setPaddingTop(Length(basePaddingTop, Fixed));
    179162    baseWrapper->setNeedsLayout(true, MarkOnlyThis);
    180163   
    181     superscriptWrapper->style()->setPaddingBottom(Length(superPaddingBottom, Fixed));
    182     superscriptWrapper->setNeedsLayout(true, MarkOnlyThis);
    183     m_scripts->setNeedsLayout(true, MarkOnlyThis);
    184    
    185     RenderBlock::layout();
     164    RenderMathMLBlock::layout();
    186165}
    187166
  • trunk/Source/WebCore/rendering/mathml/RenderMathMLSubSup.h

    r120492 r128837  
    5454    RenderBoxModelObject* base() const;
    5555   
    56     enum SubSupType { Sub, Sup, SubSup };
     56    enum SubSupType { Sub, Super, SubSup };
    5757    SubSupType m_kind;
    5858    RenderMathMLBlock* m_scripts;
  • trunk/Source/WebCore/rendering/mathml/RenderMathMLUnderOver.cpp

    r124512 r128837  
    5050}
    5151
    52 RenderBoxModelObject* RenderMathMLUnderOver::base() const
    53 {
    54     RenderObject* baseWrapper = firstChild();
    55     if ((m_kind == Over || m_kind == UnderOver) && baseWrapper)
    56         baseWrapper = baseWrapper->nextSibling();
    57     if (!baseWrapper)
    58         return 0;
    59     RenderObject* base = baseWrapper->firstChild();
    60     if (!base || !base->isBoxModelObject())
    61         return 0;
    62     return toRenderBoxModelObject(base);
    63 }
    64 
    65 void RenderMathMLUnderOver::addChild(RenderObject* child, RenderObject* beforeChild)
    66 {   
    67     RenderMathMLBlock* row = createAnonymousMathMLBlock();
    68    
    69     // look through the children for rendered elements counting the blocks so we know what child
    70     // we are adding
    71     int blocks = 0;
    72     RenderObject* current = this->firstChild();
    73     while (current) {
    74         blocks++;
    75         current = current->nextSibling();
    76     }
    77    
    78     switch (blocks) {
    79     case 0:
    80         // this is the base so just append it
    81         RenderBlock::addChild(row, beforeChild);
    82         break;
    83     case 1:
    84         // the under or over
    85         row->style()->setTextAlign(CENTER);
    86         if (m_kind == Over) {
    87             // add the over as first
    88             RenderBlock::addChild(row, firstChild());
    89         } else {
    90             // add the under as last
    91             RenderBlock::addChild(row, beforeChild);
    92         }
    93         break;
    94     case 2:
    95         // the under or over
    96         row->style()->setTextAlign(CENTER);
    97         if (m_kind == UnderOver) {
    98             // add the over as first
    99             RenderBlock::addChild(row, firstChild());
    100         } else {
    101             // we really shouldn't get here as only munderover should have three children
    102             RenderBlock::addChild(row, beforeChild);
    103         }
    104         break;
    105     default:
    106         // munderover shouldn't have more than three children. In theory we shouldn't
    107         // get here if the MathML is correctly formed, but that isn't a guarantee.
    108         // We will treat this as another under element and they'll get something funky.
    109         RenderBlock::addChild(row, beforeChild);
    110     }
    111     row->addChild(child);   
    112 }
    113 
    114 void RenderMathMLUnderOver::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
    115 {
    116     RenderMathMLBlock::styleDidChange(diff, oldStyle);
    117    
    118     RenderObject* base = this->base();
    119     for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
    120         ASSERT(child->isAnonymous() && child->style()->refCount() == 1);
    121         if (child->firstChild() != base)
    122             child->style()->setTextAlign(CENTER);
    123     }
    124 }
    125 
    12652RenderMathMLOperator* RenderMathMLUnderOver::unembellishedOperator()
    12753{
    128     RenderBoxModelObject* base = this->base();
     54    RenderObject* base = firstChild();
    12955    if (!base || !base->isRenderMathMLBlock())
    13056        return 0;
     
    13258}
    13359
    134 inline int getOffsetHeight(RenderObject* obj)
     60LayoutUnit RenderMathMLUnderOver::firstLineBoxBaseline() const
    13561{
    136     if (obj->isBoxModelObject()) {
    137         RenderBoxModelObject* box = toRenderBoxModelObject(obj);
    138         return box->pixelSnappedOffsetHeight();
    139     }
    140    
    141     return 0;
    142 }
    143 
    144 LayoutUnit RenderMathMLUnderOver::baselinePosition(FontBaseline baselineType, bool firstLine, LineDirectionMode direction, LinePositionMode linePositionMode) const
    145 {
    146     RenderObject* current = firstChild();
    147     if (!current || linePositionMode == PositionOfInteriorLineBoxes)
    148         return RenderMathMLBlock::baselinePosition(baselineType, firstLine, direction, linePositionMode);
    149 
    150     LayoutUnit baseline = direction == HorizontalLine ? marginTop() : marginRight();
    151     switch (m_kind) {
    152     case UnderOver:
    153     case Over:
    154         if (current->nextSibling()) {
    155             baseline += getOffsetHeight(current);
    156             current = current->nextSibling();
    157         }
    158         // fall through
    159     case Under:
    160         ASSERT(current->isRenderBlock());
    161         baseline += toRenderBox(current)->firstLineBoxBaseline();
    162     }
    163 
     62    if (!firstChildBox())
     63        return -1;
     64    LayoutUnit baseline = firstChildBox()->firstLineBoxBaseline();
     65    if (baseline != -1 && m_kind != Under)
     66        baseline += lastChildBox()->pixelSnappedOffsetHeight(); // Add in the overscript's height.
    16467    return baseline;
    16568}
  • trunk/Source/WebCore/rendering/mathml/RenderMathMLUnderOver.h

    r124512 r128837  
    3636public:
    3737    RenderMathMLUnderOver(Element*);
    38     virtual void addChild(RenderObject* child, RenderObject* beforeChild = 0);
    3938   
    4039    virtual RenderMathMLOperator* unembellishedOperator();
    4140
    42     virtual LayoutUnit baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
     41    virtual LayoutUnit firstLineBoxBaseline() const OVERRIDE;
    4342   
    4443private:
    45     virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OVERRIDE;
    46 
    4744    virtual const char* renderName() const { return "RenderMathMLUnderOver"; }
    4845
    49     // Omit our underscript and/or overscript. This may return 0 for a non-MathML base (which
    50     // won't occur in valid MathML).
    51     RenderBoxModelObject* base() const;
    52    
    5346    enum UnderOverType { Under, Over, UnderOver };
    5447    UnderOverType m_kind;
Note: See TracChangeset for help on using the changeset viewer.