gecko-dev/layout/reftests/css-ruby/relative-positioning-1-ref.html
Xidorn Quan a85af6a361 Bug 1112474 part 1 - Make utils of CSS Ruby reftests writing-mode aware. r=dholbert
--HG--
extra : rebase_source : 5a4be10876e45a8bb17edcca6e25be4dd5a31c0c
extra : source : 3d79017794b0718d7a382e7197e79544d00e25b4
2015-03-19 19:04:50 +11:00

23 lines
713 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bug 1055658 - Relative positioning for ruby</title>
<script type="text/javascript" src="utils.js"></script>
</head>
<body>
<div style="height: 80px; line-height: 80px; width: 50px; text-align: center">
<span id="inline" style="position: relative">
<div id="annotation" style="position: absolute; width: 50px; top: -100%">
a<span style="position: relative; top: -10px;">b</span>c
</div>
base
</span>
</div>
<script type="text/javascript">
makeBSizeMatchInlineBox(document.getElementById('annotation'),
document.getElementById('inline'));
</script>
</body>
</html>