blob: 2a8f8ba8f36826000517e68e7044fe77d8a42d75 [file] [log] [blame]
zimmermann@webkit.orgd7e9e052012-01-17 12:42:25 +00001<?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.orga8de26c2012-02-07 11:19:19 +00004<head>
5<script src="../../fast/repaint/resources/repaint.js"></script>
6</head>
7<body onload="runRepaintTest()">
krit@webkit.orgd349f5d2014-05-06 06:06:28 +00008<svg style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%">
zimmermann@webkit.orgd7e9e052012-01-17 12:42:25 +00009 <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.orga8de26c2012-02-07 11:19:19 +000018function repaintTest() {
zimmermann@webkit.orgd7e9e052012-01-17 12:42:25 +000019 document.getElementById("modify").appendChild(document.createTextNode("SS"));
zimmermann@webkit.orga8de26c2012-02-07 11:19:19 +000020}
zimmermann@webkit.orgd7e9e052012-01-17 12:42:25 +000021</script>
22</html>