haikuwebkit/LayoutTests/fast/table/overflow-percent-height-reg...

40 lines
750 B
HTML

<!doctype html>
<head>
<style>
html, body {
height:100%;
margin: 0;
overflow:hidden;
}
#table1 {
width:90%;
height:90%;
}
#scrollable {
background-color: steelblue;
width: 100%;
height: 100%;
overflow-y: scroll;
overflow-x: hidden;
}
#content {
width:100%;
height:1000px;
background-color:salmon;
box-sizing:border-box;
}
</style>
</head>
<body>
<div id="table1">
<div id="scrollable">
<div id="content">
CONTENT
</div>
</div>
</div>
</body>