box-without-scrollable-overflow-should-not-consume-scroll-events-ref.html 411 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <style>
  3. .scrollable {
  4. overflow-y: scroll;
  5. width: 100px;
  6. height: 300px;
  7. scrollbar-width: none;
  8. }
  9. .item {
  10. width: 100px;
  11. height: 100px;
  12. box-sizing: border-box;
  13. border: 1px solid black;
  14. }
  15. </style>
  16. <div class="scrollable">
  17. <div class="item">2</div>
  18. <div class="item">3</div>
  19. <div class="item">4</div>
  20. </div>