layout/reftests/mathml/displaystyle-2-ref.html

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     1 <!doctype html>
     2 <html>
     3   <head>
     4     <title>displaystyle</title>
     5     <meta charset="utf-8"/>
     6   </head>
     7   <body>
     9     <!-- Test the effect of displaystyle on munder, mover and munderover -->
    10     <math>
    11       <mstyle displaystyle="true">
    12         <munder><mo>O</mo><mo>O</mo></munder>
    13         <mover><mo>O</mo><mo>O</mo></mover>
    14         <munderover><mo>O</mo><mo>O</mo><mo>O</mo></munderover>
    15       </mstyle>
    16       <mstyle displaystyle="false">
    17         <msub><mo>O</mo><mo>O</mo></msub>
    18         <msup><mo>O</mo><mo>O</mo></msup>
    19         <msubsup><mo>O</mo><mo>O</mo><mo>O</mo></msubsup>
    20       </mstyle>
    21     </math>
    23   </body>
    24 </html>

mercurial