blob: 10d9856b14457c4c3610bb6321c1e1a4024271a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<!DOCTYPE html>
<html class="reftest-wait">
<math style="font-size:25px; position: absolute; top: 10px; left:10px;">
<mrow id="outer">
<mo>(</mo>
<mrow>
<mn id="a" style="visibility:hidden;">a</mn>
<mo>&</mo>
<mn id="c" style="visibility:hidden;">c</mn>
</mrow>
<mo>)</mo>
</mrow>
</math>
<!-- Implementation kludge. <mfenced> renders the position of the ampersand in
a slightly different position compared to <mo>+<mrow>.
In this test we are only concerned about the size of the fences "(" and
")", so the ampersand gets redacted. -->
<div id="div" style="position: absolute; background:black; top: 0px;
height: 120px;"></div>
<script>
function doTest()
{
a = document.getElementById("a");
c = document.getElementById("c");
div = document.getElementById("div");
outer = document.getElementById("outer");
left = a.getBoundingClientRect().left; // div's left
div.style.left = left + 'px';
div.style.width = (c.getBoundingClientRect().right - left ) + 'px';
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest, false);
</script>
</html>
|