repaint-on-style-change-expected.html 329 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Test for repaint on style change</title>
  5. <style>
  6. div {
  7. background-color: green;
  8. height: 100px;
  9. width: 100px;
  10. position: absolute;
  11. top: 260px;
  12. left: 260px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div id='box'> </div>
  18. </body>
  19. </html>