Files
Mozilla/mozilla/layout/reftests/bugs/367247-s-scroll.html
dbaron%dbaron.org c85e259a73 Add tests for support of 'overflow' on inline-block elements. b=367247
git-svn-id: svn://10.0.0.236/trunk@219304 18797224-902f-48f8-a5cc-f745e15eee43
2007-02-01 02:13:07 +00:00

29 lines
427 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: scroll;
width: 50px;
height: 50px;
border: thin solid;
}
body > span > span {
display: block;
background: blue;
width: 20px;
height: 20px;
}
</style>
</head>
<body>
<span><span></span></span>
</body>
</html>