mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
367 B
HTML
21 lines
367 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; }
|
||
|
|
||
|
span#ib span { display: block; padding: 7px; }
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table border><tr><td>
|
||
|
|
||
|
<p>x<span id="ib"><span>test</span></span>x</p>
|
||
|
|
||
|
</td></tr></table>
|
||
|
</body>
|
||
|
</html>
|