zimmermann@webkit.org | d7e9e05 | 2012-01-17 12:42:25 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| 3 | <html xmlns="http://www.w3.org/1999/xhtml"> |
zimmermann@webkit.org | a8de26c | 2012-02-07 11:19:19 +0000 | [diff] [blame] | 4 | <head> |
| 5 | <script src="../../fast/repaint/resources/repaint.js"></script> |
| 6 | </head> |
| 7 | <body onload="runRepaintTest()"> |
krit@webkit.org | d349f5d | 2014-05-06 06:06:28 +0000 | [diff] [blame] | 8 | <svg style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%"> |
zimmermann@webkit.org | d7e9e05 | 2012-01-17 12:42:25 +0000 | [diff] [blame] | 9 | <title>You should see the word PASS three times</title> |
| 10 | <text transform="translate(10, 50) scale(10 10)" font-size="12"> |
| 11 | <tspan x="0" y="12" id="modify">PA</tspan> |
| 12 | <tspan x="0" y="24">PASS</tspan> |
| 13 | <tspan x="0" y="36">PASS</tspan> |
| 14 | </text> |
| 15 | </svg> |
| 16 | </body> |
| 17 | <script> |
zimmermann@webkit.org | a8de26c | 2012-02-07 11:19:19 +0000 | [diff] [blame] | 18 | function repaintTest() { |
zimmermann@webkit.org | d7e9e05 | 2012-01-17 12:42:25 +0000 | [diff] [blame] | 19 | document.getElementById("modify").appendChild(document.createTextNode("SS")); |
zimmermann@webkit.org | a8de26c | 2012-02-07 11:19:19 +0000 | [diff] [blame] | 20 | } |
zimmermann@webkit.org | d7e9e05 | 2012-01-17 12:42:25 +0000 | [diff] [blame] | 21 | </script> |
| 22 | </html> |