| OLD | NEW | 
|   1 <!DOCTYPE html> |   1 <!DOCTYPE html> | 
|   2 <html> |   2 <html> | 
|   3 <head> |   3 <head> | 
|   4     <script src="resources/repaint.js" type="text/javascript"></script> |   4     <script src="resources/repaint.js" type="text/javascript"></script> | 
|   5     <script> |   5     <script> | 
|   6     function repaintTest() { |   6     function repaintTest() { | 
|   7         // Now scroll once in the #innerDiv to the green area. |   7         // Now scroll once in the #innerDiv to the green area. | 
|   8         if (window.eventSender) |   8         if (window.eventSender) | 
|   9             eventSender.mouseScrollBy(0, -10); |   9             eventSender.mouseScrollBy(0, -10); | 
|  10     } |  10     } | 
| (...skipping 16 matching lines...) Expand all  Loading... | 
|  27  |  27  | 
|  28     // Scroll the #outerDiv until we reach the #innerDiv. |  28     // Scroll the #outerDiv until we reach the #innerDiv. | 
|  29     eventSender.mouseMoveTo(50, 50); |  29     eventSender.mouseMoveTo(50, 50); | 
|  30     eventSender.mouseScrollBy(0, -8); |  30     eventSender.mouseScrollBy(0, -8); | 
|  31 } else { |  31 } else { | 
|  32     document.write("This test is better run under DumpRenderTree. To manually te
    st it, continuously scroll down on the top-most element. There should be no repa
    int issue."); |  32     document.write("This test is better run under DumpRenderTree. To manually te
    st it, continuously scroll down on the top-most element. There should be no repa
    int issue."); | 
|  33 } |  33 } | 
|  34 </script> |  34 </script> | 
|  35 </body> |  35 </body> | 
|  36 </html> |  36 </html> | 
| OLD | NEW |