Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <!doctype html>
2 <html class="reftest-wait">
3 <head>
4 <title>menclose actuarial</title>
5 <meta charset="utf-8"/>
6 <script type="text/javascript">
7 function doTest()
8 {
9 var box = document.getElementById("box").getBoundingClientRect();
10 document.getElementById("path").setAttribute("d",
11 "M" + (box.left + "," + box.top) +
12 "L" + ((box.width+box.left) + "," + box.top) +
13 "L" + ((box.width+box.left) + "," + box.bottom ));
14 document.documentElement.removeAttribute("class");
15 }
16 window.addEventListener("MozReftestInvalidate",doTest, false);
17 </script>
18 </head>
19 <body>
21 <div style="position: absolute; left: 20px; top: 20px;">
22 <math>
23 <mphantom>
24 <menclose id="box" notation="actuarial">
25 <mspace width="200px" height="100px"></mspace>
26 </menclose>
27 </mphantom>
28 </math>
29 </div>
31 <div style="position: absolute; left: 0px; top: 0px;">
32 <svg width="500px" height="500px">
33 <path id="path" style="fill: none; stroke-width: 3px; stroke: green; stroke-linecap: round; shape-rendering: crispEdges;"></path>
34 </svg>
35 </div>
37 </body>
38 </html>