layout/reftests/mathml/mstyle-4.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 <!-- The attributes below should no longer have effect on <mstyle>/<math>
    16      elements. See bug 838509 -->
    18 <table>
    19   <tbody>
    20     <tr>
    21       <td>mover: accent</td>
    22       <td><math xmlns="http://www.w3.org/1998/Math/MathML" accent="false">
    23           <mstyle accent="false">
    24             <mover>
    25               <!-- We assume &#x23de; is accent in the operator dictionary -->
    26               <mrow>
    27                 <mi>x</mi>
    28                 <mo>+</mo>
    29                 <mi>y</mi>
    30                 <mo>+</mo>
    31                 <mi>z</mi>
    32               </mrow>
    33               <mo>&#x23de;</mo>
    34             </mover>
    35           </mstyle>
    36         </math></td>
    37     </tr>
    38     <tr>
    39       <td>munder: accentunder</td>
    40       <td><math xmlns="http://www.w3.org/1998/Math/MathML" accentunder="false">
    41           <mstyle accentunder="false">
    42             <munder>
    43               <!-- We assume &#x23df; is accent in the operator dictionary -->
    44               <mrow>
    45                 <mi>x</mi>
    46                 <mo>+</mo>
    47                 <mi>y</mi>
    48                 <mo>+</mo>
    49                 <mi>z</mi>
    50               </mrow>
    51               <mo>&#x23df;</mo>
    52             </munder>
    53           </mstyle>
    54         </math></td>
    55     </tr>
    56     <tr>
    57       <td>munderover: accent, accentunder</td>
    58       <td><math xmlns="http://www.w3.org/1998/Math/MathML" accent="false" accentunder="false">
    59           <mstyle accent="false" accentunder="false">
    60             <munderover>
    61               <!-- We assume &#x23de; and &#x23df; are accents in the operator dictionary -->
    62               <mrow>
    63                 <mi>x</mi>
    64                 <mo>+</mo>
    65                 <mi>y</mi>
    66                 <mo>+</mo>
    67                 <mi>z</mi>
    68               </mrow>
    69               <mo>&#x23df;</mo>
    70               <mo>&#x23de;</mo>
    71             </munderover>
    72           </mstyle>
    73         </math></td>
    74     </tr>
    75   </tbody>
    76 </table>
    77 </body>
    78 </html>

mercurial