OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> |
| 3 <!-- Tests that the background for a document in flipped blocks writing mode |
| 4 is painted and invalidated properly when scrolled. Test passes if the document |
| 5 background is painted green throughout the margin surrounding the explicitly |
| 6 sized light blue div. --> |
| 7 <style> |
| 8 html { |
| 9 background-color: green; |
| 10 writing-mode: vertical-rl; |
| 11 } |
| 12 </style> |
| 13 <div style="width: 1500px; background: lightBlue;"></div> |
| 14 <script> |
| 15 function repaintTest() { |
| 16 window.scrollTo(-2000, 0); |
| 17 } |
| 18 onload = runRepaintAndPixelTest; |
| 19 </script> |
OLD | NEW |