Bug 1910842 - fix non-scaling-stroke when outer svg element has a CSS transform r...
[gecko.git] / layout / reftests / async-scrolling / position-fixed-body-ref.html
blob4d1d74b1756e9ba9f7e66a7ab9203c2c88e862ed
1 <!DOCTYPE html>
2 <html reftest-async-scroll>
3 <style>
4 body {
5 height: 100vh;
6 margin: 0px;
8 #scrollbox {
9 width: 100%;
10 height: 100%;
11 overflow: scroll;
12 scrollbar-width: none;
14 #scrolledContents {
15 height: 10000px;
16 background: radial-gradient(circle, blue 30%, transparent 0);
17 background-size: 80px 80px;
19 </style>
20 <body>
21 <div id="scrollbox"
22 reftest-dislayport-x="0" reftest-displayport-y="0"
23 reftest-displayport-w="800" reftest-displayport-h="2000"
24 reftest-async-scroll-x="0" reftest-async-scroll-y="20">
25 <div id="scrolledContents"></div>
26 </div>
27 </body>
28 </html>