Ticket #18395: test2.html

File test2.html, 792 bytes (added by madmax, 19 months ago)

Reduced testcase

Line 
1<!DOCTYPE html><html><head>
2<TITLE>#18395</TITLE>
3
4<style type="text/css">
5#slick-list {
6 border: 1px solid blue;
7 height: 405px;
8 overflow: hidden;
9}
10
11#slick-track {
12 border: 1px solid red;
13 height: 1758px;
14 transform: translate3d(0px, 0px, 0px);
15 /* Having this changes everything */
16}
17</style>
18
19<script>
20setTimeout(function(){window.scrollTo({top:500,behavior:'instant'})}, 2000)
21</script>
22
23</head><body>
24<div id="slick-list">
25 <div id="slick-track">
26 <img src="https://cdn.freewebstore.com/origin/590629/profilevga.jpg" />
27 <img src="https://cdn.freewebstore.com/origin/590629/profile.jpg" />
28 <img src="https://cdn.freewebstore.com/origin/590629/ports.jpg" />
29 </div>
30</div>
31<div style="height: 2000px"></div>
32
33</body></html>