1
0
Fork 0
firefox/layout/reftests/css-ruby/relative-positioning-1.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

24 lines
556 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bug 1055658 - Relative positioning for ruby</title>
<link rel="stylesheet" href="common.css">
<style>
body {
line-height: 80px;
}
rtc, rt {
font-size: 100% !important;
line-height: 1 !important;
}
</style>
</head>
<body>
<ruby style="position: relative;">
<rb>base</rb>
<rtc><rt>a<span style="position: relative; top: -10px;">b</span>c</rt></rtc>
<rtc><div style="width: 50px; height: 0;"></div></rtc>
</ruby>
</body>
</html>