Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/scrolling/reftest.list
<!DOCTYPE html>
<style>
.scrollable {
overflow: scroll;
height: 100px;
width: 100px;
border: 2px solid black;
}
.scrollable::before {
display: block;
content: "overflowing content";
height: 300px;
width: 300px;
}
.pseudo8::-webkit-scrollbar {
width: 8%;
height: 8%;
}
.pseudo20::-webkit-scrollbar {
width: 20%;
height: 20%;
}
</style>
<div class="scrollable"></div>
<div class="scrollable pseudo8"></div>
<div class="scrollable pseudo20"></div>