Bug 1535077 - Switch to using Ref and PureComponent in the SearchBox component. r...
[gecko.git] / layout / reftests / bugs / 373533-2.xhtml
blobe269415a2143d1e37591d986e1188eb11c2e7b4b
1 <html xmlns="http://www.w3.org/1999/xhtml"
2 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
3 xmlns:math="http://www.w3.org/1998/Math/MathML"><head>
4 </head>
5 <body><xul:box collapsed="true"><math:mrow><div id="div">
6 <p id="para">Foo bar</p>
8 </div></math:mrow></xul:box>
10 <script type="application/javascript">
11 try
13 document.body.offsetWidth;
15 var para = document.getElementById("para");
16 var div = document.getElementById("div");
17 var hbox = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",
18 'hbox');
20 div.appendChild(hbox);
22 document.body.offsetWidth;
24 div.appendChild(para);
26 catch (e)
28 document.body.appendChild(document.createTextNode(e));
30 </script>
31 </body></html>