| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <script src="../../fast/repaint/resources/repaint.js"></script> |
| <body style="margin: 0" onload="runRepaintTest()"> |
| <div id="div" style="width:100px; height:100px; overflow:hidden"> |
| <svg id="svg" width="200px" height="200px" xmlns="http://www.w3.org/2000/svg"> |
| <rect fill="orange" width="100px" height="100px" /> |
| <rect id="rect" onclick="clicked()" fill="green" y="100px" x="100px" width="100px" height="100px" /> |
| document.getElementById("rect").style.fill = "green"; |
| var div = document.getElementById("div"); |
| if (window.eventSender) { |
| testRunner.waitUntilDone(); |
| eventSender.mouseMoveTo(50, 50); |