tenfourfox/layout/reftests/bugs/367247-s-visible.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

29 lines
430 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Testcase, 'overflow' on elements with 'display:inline-block'</title>
<style type="text/css">
body > span {
display: inline-block;
vertical-align: text-bottom;
overflow: visible;
width: 100px;
height: 100px;
border: thin solid;
}
body > span > span {
display: block;
background: blue;
width: 20px;
height: 20px;
}
</style>
</head>
<body>
<span><span></span></span>
</body>
</html>