no-stacking-context-transition-ref.html 321 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <title>
  3. Reference of testcases which don't create a stacking context for bug 1278136
  4. </title>
  5. <style>
  6. span {
  7. height: 100px;
  8. width: 100px;
  9. background: green;
  10. position: fixed;
  11. top: 50px;
  12. }
  13. #test {
  14. height: 100px;
  15. width: 100px;
  16. background: blue;
  17. }
  18. </style>
  19. <span></span>
  20. <div id="test"></div>