Mozilla/mozilla/layout/reftests/bugs/367247-s-scroll.html
martijn.martijn%gmail.com b9730d0452 Bug 373456 – Unexpected fail with 367247-s-auto.html test, because of my use of 26px wide scrollbars == making certain reftest bigger, r=dbaron
git-svn-id: svn://10.0.0.236/trunk@221885 18797224-902f-48f8-a5cc-f745e15eee43
2007-03-14 18:22:05 +00:00

29 lines
429 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: 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>