mirror of
https://github.com/servo/servo
synced 2026-05-11 01:22:19 +02:00
42 lines
722 B
HTML
42 lines
722 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>Long scrolling should work properly</title>
|
|
<link rel="author" title="Mason Freed" href="mailto:masonfreed@chromium.org">
|
|
|
|
|
|
|
|
<style>
|
|
.post {
|
|
height: 1000px;
|
|
width: 300px;
|
|
border: 1px solid black;
|
|
|
|
}
|
|
.before {
|
|
height: 213px;
|
|
border-top: 0;
|
|
}
|
|
.scroller {
|
|
overflow-y: scroll;
|
|
width: 500px;
|
|
height: 500px;
|
|
will-change: transform;
|
|
}
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
</style>
|
|
|
|
<p>The number 7 should be visible in the scrolled window below.</p>
|
|
|
|
<div id="scroller" class="scroller">
|
|
<div style="position: relative;">
|
|
<div style="position: relative;">
|
|
<div class="post before"></div>
|
|
<div class="post">7</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|