blob: 7a5de3811b1e45b85f8805ae4dc01225649ae7a9 (
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
41
42
43
44
45
46
47
48
49
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>radicals rendering from in-flow children</title>
<link rel="help" href="https://w3c.github.io/mathml-core/#radicals-msqrt-mroot">
<meta name="assert" content="Verify rendering of radicals is only affected by in-flow children.">
<style>
.oof1 {
position: absolute;
}
.oof2 {
position: fixed;
}
.nobox {
display: none;
}
</style>
<link rel="match" href="radical-rendering-from-in-flow-ref.html">
</head>
<body>
<math>
<msqrt>
<mspace width="32px" class="oof1"/>
<mspace width="16px" class="oof2"/>
<mspace width="8px" class="nobox"/>
<mspace width="64px" height="8px" style="background: lightblue"></mspace>
<mspace width="32px" class="oof1"/>
<mspace width="16px" class="oof2"/>
<mspace width="8px" class="nobox"/>
</msqrt>
<mroot>
<mspace width="32px" class="oof1"/>
<mspace width="16px" class="oof2"/>
<mspace width="8px" class="nobox"/>
<mspace width="64px" height="12px" style="background: lightblue"></mspace>
<mspace width="32px" class="oof1"/>
<mspace width="16px" class="oof2"/>
<mspace width="8px" class="nobox"/>
<mspace width="128px" height="24px" style="background: lightgreen"></mspace>
<mspace width="32px" class="oof1"/>
<mspace width="16px" class="oof2"/>
<mspace width="8px" class="nobox"/>
</mroot>
</math>
<script src="/mathml/support/feature-detection.js"></script>
<script>MathMLFeatureDetection.ensure_for_match_reftest("has_msqrt");</script>
</body>
</html>
|