Add parsing of overflow: scroll and auto.

Elements with overflow scroll/auto are not yet scrollable, but they will be
clipped correctly (like `overflow: hidden`).
This commit is contained in:
Matt Brubeck 2014-06-20 12:21:15 -07:00
parent 21e4d85511
commit f7e371fdfd
5 changed files with 56 additions and 6 deletions

View file

@ -0,0 +1,22 @@
<html>
<head>
<style>
#first {
height: 100px;
width: 100px;
overflow: scroll;
}
#second {
height: 100px;
width: 200px;
background: green;
}
</style>
</head>
<body>
<div id="first">
<div id="second">
</div>
</div>
</body>
</html>