blob: 8b2ffbdb2e06f8e5120e505fd5603383386c9f36 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.cover {
overflow-y: hidden;
height: 30px;
width: 200px;
}
.box {
overflow-x: scroll;
height: 85px;
width: 80px;
}
.blur {
-webkit-filter: blur(1px);
}
</style>
</head>
<body>
<!-- This div covers the scrollbar, so that we can reftest it with overflow:hidden. -->
<div class="cover">
<!-- You should not see the 'dolor' part of the text -->
<div class="blur">
<div class="box">Loremipsumdolor</div>
</div>
</div>
</body>
</html>