OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 Tests painting of fixed background content in scrolled container. | |
3 Passes if the background doesn't scroll. | |
4 <div id="container" style="width: 200px; height: 200px; overflow: hidden"> | |
5 <div id="content" style="height: 2000px; background: linear-gradient(red, blue ); background-attachment: fixed"></div> | |
6 </div> | |
7 <script> | |
8 onload = function() { | |
9 container.scrollTop = 1000; | |
10 }; | |
11 </script> | |
OLD | NEW |