mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
17 lines
431 B
HTML
17 lines
431 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Testcase for inline-block (bug 9458)</title>
|
||
|
<style type="text/css">
|
||
|
body { background: white; color: black; }
|
||
|
span { display: inline-block; margin: 3px 0; border: 4px solid white; border-width: 4px 0; padding: 9px 0; }
|
||
|
span > span { display: block; visibility: hidden; }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table border><tr><td>
|
||
|
<p><span><span>x</span>abcde</span></p>
|
||
|
</td></tr></table>
|
||
|
</body>
|
||
|
</html>
|