overlayscrollbar-sorting-3.html 561 B

12345678910111213141516171819202122232425262728293031323334
  1. <!--
  2. Any copyright is dedicated to the Public Domain.
  3. http://creativecommons.org/publicdomain/zero/1.0/
  4. -->
  5. <!DOCTYPE html>
  6. <meta charset="utf-8">
  7. <title>Test that overlay scrollbars are covered by overlapping positioned siblings</title>
  8. <style>
  9. #outer {
  10. width: 200px;
  11. height: 200px;
  12. overflow: auto;
  13. background: cyan;
  14. }
  15. #content {
  16. height: 400px;
  17. }
  18. #cover {
  19. margin-top: -200px;
  20. width: 200px;
  21. height: 200px;
  22. background: cyan;
  23. position: relative;
  24. }
  25. </style>
  26. <div id="outer"><div id="content"></div></div>
  27. <div id="cover"></div>