1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/mathml/mstyle-4-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,75 @@ 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>mover: accent</td> 1.22 + <td><math xmlns="http://www.w3.org/1998/Math/MathML"> 1.23 + <mstyle> 1.24 + <mover> 1.25 + <!-- We assume ⏞ is accent in the operator dictionary --> 1.26 + <mrow> 1.27 + <mi>x</mi> 1.28 + <mo>+</mo> 1.29 + <mi>y</mi> 1.30 + <mo>+</mo> 1.31 + <mi>z</mi> 1.32 + </mrow> 1.33 + <mo>⏞</mo> 1.34 + </mover> 1.35 + </mstyle> 1.36 + </math></td> 1.37 + </tr> 1.38 + <tr> 1.39 + <td>munder: accentunder</td> 1.40 + <td><math xmlns="http://www.w3.org/1998/Math/MathML"> 1.41 + <mstyle> 1.42 + <munder> 1.43 + <!-- We assume ⏟ is accent in the operator dictionary --> 1.44 + <mrow> 1.45 + <mi>x</mi> 1.46 + <mo>+</mo> 1.47 + <mi>y</mi> 1.48 + <mo>+</mo> 1.49 + <mi>z</mi> 1.50 + </mrow> 1.51 + <mo>⏟</mo> 1.52 + </munder> 1.53 + </mstyle> 1.54 + </math></td> 1.55 + </tr> 1.56 + <tr> 1.57 + <td>munderover: accent, accentunder</td> 1.58 + <td><math xmlns="http://www.w3.org/1998/Math/MathML"> 1.59 + <mstyle> 1.60 + <munderover> 1.61 + <!-- We assume ⏞ and ⏟ are accents in the operator dictionary --> 1.62 + <mrow> 1.63 + <mi>x</mi> 1.64 + <mo>+</mo> 1.65 + <mi>y</mi> 1.66 + <mo>+</mo> 1.67 + <mi>z</mi> 1.68 + </mrow> 1.69 + <mo>⏟</mo> 1.70 + <mo>⏞</mo> 1.71 + </munderover> 1.72 + </mstyle> 1.73 + </math></td> 1.74 + </tr> 1.75 + </tbody> 1.76 +</table> 1.77 +</body> 1.78 +</html>