2007-01-27 21:36:57 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Testcase for inline-block (bug 9458)</title>
|
|
|
|
<style type="text/css">
|
|
|
|
div { height: 1em; }
|
|
|
|
span { display:inline-block; vertical-align: top; height: 1em; background: red; color: red; }
|
|
|
|
div#after { margin-top:-1em; }
|
2007-02-02 09:15:24 +03:00
|
|
|
div#after span { display: inline; background: green; color: green; border-bottom: 0.5em solid green; }
|
2007-01-27 21:36:57 +03:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div><span>X</span></div>
|
|
|
|
<div id="after"><span>X</span></div>
|
|
|
|
</body>
|
|
|
|
</html>
|