gecko-dev/layout/reftests/css-ruby/relative-positioning-1.html
Xidorn Quan 72aad2a249 Bug 1055658 part 3 - Add reftests for ruby annotation relative positioning. r=dbaron
--HG--
extra : source : 1be2cf7edc4219582496a9faba5b4f40fd73a33b
2015-01-13 20:04:41 +11:00

25 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>