mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
428 B
HTML
17 lines
428 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Testcase for inline-table (bug 18217)</title>
|
|
<style type="text/css">
|
|
div { width: 2em; height: 2em; }
|
|
span { display:inline-table; vertical-align: top; width: 2em; height: 2em; }
|
|
span span { display: block; background: green; }
|
|
div#after { margin-top: -2em; background: red; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><span><span> </span></span></div>
|
|
<div id="after"> </div>
|
|
</body>
|
|
</html>
|