mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
431 B
HTML
29 lines
431 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: 150px;
|
|
height: 150px;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<span><span></span></span>
|
|
</body>
|
|
</html>
|