1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/mathml/mstyle-2-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,144 @@ 1.4 +<?xml version="1.0" encoding="us-ascii"?> 1.5 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.6 +<head> 1.7 + <meta http-equiv="content-type" 1.8 + content="application/xhtml+xml; charset=us-ascii" /> 1.9 + <title>Test mstyle</title> 1.10 + <style type="text/css"> 1.11 + table { width: 100%; border-collapse: collapse; } 1.12 + td { border: solid black 1px; } 1.13 + </style> 1.14 +</head> 1.15 + 1.16 +<body> 1.17 + 1.18 +<table> 1.19 + <tbody> 1.20 + <tr> 1.21 + <td>mpadded: width</td> 1.22 + <td><math xmlns="http://www.w3.org/1998/Math/MathML"> 1.23 + <mstyle> 1.24 + <mtext>_</mtext> 1.25 + <mpadded/> 1.26 + <mtext>_</mtext> 1.27 + </mstyle> 1.28 + </math></td> 1.29 + </tr> 1.30 + <tr> 1.31 + <td>mpadded: lspace</td> 1.32 + <td><math xmlns="http://www.w3.org/1998/Math/MathML"> 1.33 + <mstyle> 1.34 + <mtext>_</mtext> 1.35 + <mpadded/> 1.36 + <mtext>_</mtext> 1.37 + </mstyle> 1.38 + </math></td> 1.39 + </tr> 1.40 + <tr> 1.41 + <td>mpadded: height</td> 1.42 + <td><math xmlns="http://www.w3.org/1998/Math/MathML"> 1.43 + <mstyle> 1.44 + <msup> 1.45 + <mrow> 1.46 + <mtext>_</mtext> 1.47 + <mpadded/> 1.48 + <mtext>_</mtext> 1.49 + </mrow> 1.50 + <mtext>_</mtext> 1.51 + </msup> 1.52 + </mstyle> 1.53 + </math></td> 1.54 + </tr> 1.55 + <tr> 1.56 + <td>mpadded: depth</td> 1.57 + <td><math xmlns="http://www.w3.org/1998/Math/MathML"> 1.58 + <mstyle> 1.59 + <msub> 1.60 + <mrow> 1.61 + <mtext>_</mtext> 1.62 + <mpadded/> 1.63 + <mtext>_</mtext> 1.64 + </mrow> 1.65 + <mtext>_</mtext> 1.66 + </msub> 1.67 + </mstyle> 1.68 + </math></td> 1.69 + </tr> 1.70 + <tr> 1.71 + <td>mspace: width</td> 1.72 + <td><math xmlns="http://www.w3.org/1998/Math/MathML"> 1.73 + <mstyle> 1.74 + <mtext>_</mtext> 1.75 + <mspace/> 1.76 + <mtext>_</mtext> 1.77 + </mstyle> 1.78 + </math></td> 1.79 + </tr> 1.80 + <tr> 1.81 + <td>mspace: height</td> 1.82 + <td><math xmlns="http://www.w3.org/1998/Math/MathML"> 1.83 + <mstyle> 1.84 + <msup> 1.85 + <mrow> 1.86 + <mtext>_</mtext> 1.87 + <mspace/> 1.88 + <mtext>_</mtext> 1.89 + </mrow> 1.90 + <mtext>_</mtext> 1.91 + </msup> 1.92 + </mstyle> 1.93 + </math></td> 1.94 + </tr> 1.95 + <tr> 1.96 + <td>mspace: depth</td> 1.97 + <td><math xmlns="http://www.w3.org/1998/Math/MathML"> 1.98 + <mstyle> 1.99 + <msub> 1.100 + <mrow> 1.101 + <mtext>_</mtext> 1.102 + <mspace/> 1.103 + <mtext>_</mtext> 1.104 + </mrow> 1.105 + <mtext>_</mtext> 1.106 + </msub> 1.107 + </mstyle> 1.108 + </math></td> 1.109 + </tr> 1.110 + <tr> 1.111 + <td>maction: selection</td> 1.112 + <td><math xmlns="http://www.w3.org/1998/Math/MathML"> 1.113 + <mstyle> 1.114 + <maction actiontype="toggle"> 1.115 + <mn>1</mn> 1.116 + <mn>2</mn> 1.117 + </maction> 1.118 + </mstyle> 1.119 + </math></td> 1.120 + </tr> 1.121 + <tr> 1.122 + <td>mtable: align</td> 1.123 + <td><math xmlns="http://www.w3.org/1998/Math/MathML"> 1.124 + <mstyle> 1.125 + <mrow> 1.126 + <mtext>_</mtext> 1.127 + <mtable> 1.128 + <mtr> 1.129 + <mtd> 1.130 + <mtext>―</mtext> 1.131 + </mtd> 1.132 + </mtr> 1.133 + <mtr> 1.134 + <mtd> 1.135 + <mtext>―</mtext> 1.136 + </mtd> 1.137 + </mtr> 1.138 + </mtable> 1.139 + <mtext>_</mtext> 1.140 + </mrow> 1.141 + </mstyle> 1.142 + </math></td> 1.143 + </tr> 1.144 + </tbody> 1.145 +</table> 1.146 +</body> 1.147 +</html>