gecko-dev/layout/reftests/css-ruby/ruby-position-vertical-rl-ref.html
Xidorn Quan 96db36c21e Bug 1112474 part 2 - Fix ruby-position reftests with bsize adjustment. r=dholbert
--HG--
extra : rebase_source : 51c27b69f29ce299954ddafc6140a91fc508b917
extra : source : 5cb02c09512316d63f6a3fbda81d04a081cf2907
extra : histedit_source : 01eccfaa0faf1d92e45324e3bb296334fbd53449
2015-03-19 19:04:50 +11:00

39 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bug 1055665 - Test for ruby-position</title>
<link rel="stylesheet" href="common.css">
<script type="text/javascript" src="utils.js"></script>
<style>
html {
writing-mode: vertical-rl;
}
body {
font-family: monospace;
}
.annotation, .annotation > div {
position: absolute;
}
</style>
</head>
<body>
<div style="width: 8em; line-height: 8em;">
<div style="display: inline-block;">
<div class="annotation">
<div style="right: 100%;"><span>left##</span></div>
<div style="right: -100%;"><span>right#</span></div>
<div style="right: 200%;"><span>left2#</span></div>
<div style="right: -200%;"><span>right2</span></div>
<!-- to give container the proper block-axis size -->
<span>&nbsp;</span>
</div>
<span>base##</span>
</div>
</div>
<script type="text/javascript">
makeBSizeOfParentMatch(document.getElementsByTagName('span'));
</script>
</body>
</html>