reftest-opaque-layer-pass.html 495 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <meta charset="utf-8">
  4. <title>Both divs should be part of opaque layers.</title>
  5. <style>
  6. .content {
  7. box-sizing: border-box;
  8. width: 200px;
  9. height: 200px;
  10. border: 1px solid black;
  11. }
  12. .fixed {
  13. position: fixed;
  14. top: 20px;
  15. left: 140px;
  16. }
  17. .opaque-background {
  18. background-color: white;
  19. }
  20. body {
  21. height: 4000px;
  22. }
  23. </style>
  24. <div class="content reftest-opaque-layer"></div>
  25. <div class="fixed opaque-background content reftest-opaque-layer"></div>