mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
21 lines
379 B
HTML
21 lines
379 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Testcase, bug 367504 -- inline block as margin root</title>
|
|
<style type="text/css">
|
|
|
|
span#ib { display: inline-block; vertical-align: text-bottom; margin: 4px; }
|
|
|
|
span#ib span { display: block; margin: 3px; }
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table border><tr><td>
|
|
|
|
<p>x<span id="ib"><span>test</span></span>x</p>
|
|
|
|
</td></tr></table>
|
|
</body>
|
|
</html>
|