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

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.

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

mercurial