gecko/layout/reftests/bugs/9458-zorder-5.html

17 lines
600 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Testcase for inline-block (bug 9458)</title>
<style type="text/css">
div#test > span { display:inline-block; vertical-align: top; }
div#test > span > span { display: block; background: green; color: green; border-bottom: 0.25em solid green; border-top: 0.25em solid green; }
div#before { height: 1em; margin-bottom:-1em; }
div#before > span { display: inline; vertical-align: top; background: red; color: red; }
</style>
</head>
<body>
<div id="before"><span>&nbsp;x&nbsp;</span></div>
<div id="test"><span><span>&nbsp;x&nbsp;</span></span></div>
</body>
</html>