1
0
Fork 0
firefox/layout/reftests/css-ruby/line-height-4-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
661 B
HTML

<title>Bug 1134206 - Ruby line spacing adjustment on quirks mode</title>
<script type="text/javascript" src="utils.js"></script>
<div id="base">
<span id="inline">base</span>
<span id="text1" style="font-size: 80%; color: transparent">text</span>
<span id="text2" style="font-size: 50%; color: transparent">text</span>
</div>
next line
<script>
// Simulate the behavior of ruby layout.
var base = document.getElementById('base');
makeBSizeMatchInlineBox(base, document.getElementById('inline'));
base.style.paddingTop = getBSize(document.getElementById('text1'));
base.style.paddingBottom = getBSize(document.getElementById('text2'));
</script>