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
23 lines
689 B
HTML
23 lines
689 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Bug 1069519 - Ruby line height calculation</title>
|
|
<link rel="stylesheet" href="common.css">
|
|
<script type="text/javascript" src="utils.js"></script>
|
|
</head>
|
|
<body style="line-height: 1">
|
|
<div id="base">
|
|
<span id="inline">base</span>
|
|
<span id="text" style="font-size: 50%; color: transparent">text</span>
|
|
</div>
|
|
next line
|
|
<script>
|
|
// Simulate the behavior of ruby layout.
|
|
var base = document.getElementById('base');
|
|
makeBSizeMatchInlineBox(base, document.getElementById('inline'));
|
|
base.style.paddingBottom = getBSize(document.getElementById('text'));
|
|
</script>
|
|
</body>
|
|
</html>
|