layout/reftests/mathml/mstyle-4-ref.xhtml

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 <?xml version="1.0" encoding="us-ascii"?>
     2 <html xmlns="http://www.w3.org/1999/xhtml">
     3 <head>
     4   <meta http-equiv="content-type"
     5   content="application/xhtml+xml; charset=us-ascii" />
     6   <title>Test mstyle</title>
     7   <style type="text/css">
     8     table { width: 100%;  border-collapse: collapse; }
     9     td { border: solid black 1px; }
    10   </style>
    11 </head>
    13 <body>
    15 <table>
    16   <tbody>
    17     <tr>
    18       <td>mover: accent</td>
    19       <td><math xmlns="http://www.w3.org/1998/Math/MathML">
    20           <mstyle>
    21             <mover>
    22               <!-- We assume &#x23de; is accent in the operator dictionary -->
    23               <mrow>
    24                 <mi>x</mi>
    25                 <mo>+</mo>
    26                 <mi>y</mi>
    27                 <mo>+</mo>
    28                 <mi>z</mi>
    29               </mrow>
    30               <mo>&#x23de;</mo>
    31             </mover>
    32           </mstyle>
    33         </math></td>
    34     </tr>
    35     <tr>
    36       <td>munder: accentunder</td>
    37       <td><math xmlns="http://www.w3.org/1998/Math/MathML">
    38           <mstyle>
    39             <munder>
    40               <!-- We assume &#x23df; is accent in the operator dictionary -->
    41               <mrow>
    42                 <mi>x</mi>
    43                 <mo>+</mo>
    44                 <mi>y</mi>
    45                 <mo>+</mo>
    46                 <mi>z</mi>
    47               </mrow>
    48               <mo>&#x23df;</mo>
    49             </munder>
    50           </mstyle>
    51         </math></td>
    52     </tr>
    53     <tr>
    54       <td>munderover: accent, accentunder</td>
    55       <td><math xmlns="http://www.w3.org/1998/Math/MathML">
    56           <mstyle>
    57             <munderover>
    58               <!-- We assume &#x23de; and &#x23df; are accents in the operator dictionary -->
    59               <mrow>
    60                 <mi>x</mi>
    61                 <mo>+</mo>
    62                 <mi>y</mi>
    63                 <mo>+</mo>
    64                 <mi>z</mi>
    65               </mrow>
    66               <mo>&#x23df;</mo>
    67               <mo>&#x23de;</mo>
    68             </munderover>
    69           </mstyle>
    70         </math></td>
    71     </tr>
    72   </tbody>
    73 </table>
    74 </body>
    75 </html>

mercurial