mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 05:35:31 +00:00
a85af6a361
--HG-- extra : rebase_source : 5a4be10876e45a8bb17edcca6e25be4dd5a31c0c extra : source : 3d79017794b0718d7a382e7197e79544d00e25b4
31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
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 style="font-family: monospace">
|
|
<div style="height: 80px; line-height: 80px;">
|
|
before
|
|
<div style="position: relative; top: 20px; display: inline-block">
|
|
<span id="inline" style="position: relative">
|
|
<div id="annotation" style="position: absolute; top: -100%;">
|
|
text1
|
|
<span style="position: relative; top: -20px;">text2</span>
|
|
<span style="position: relative; right: 10px;">text3</span>
|
|
</div>
|
|
base1
|
|
<span style="position: relative; left: 10px;">base2</span>
|
|
<span style="position: relative; bottom: -20px;">base3</span>
|
|
</span>
|
|
</div>
|
|
after
|
|
</div>
|
|
<script type="text/javascript">
|
|
makeBSizeMatchInlineBox(document.getElementById('annotation'),
|
|
document.getElementById('inline'));
|
|
</script>
|
|
</body>
|
|
</html>
|