3 <!-- Test for WK93063: This test passes if no assert is hit and PASS is printed. -->
4 <svg id=
"root" xmlns=
"http://www.w3.org/2000/svg">
6 <animateTransform attributeName=
"transform" dur=
"2s"/>
9 if (window
.testRunner
) {
10 testRunner
.dumpAsText();
11 testRunner
.waitUntilDone();
14 var rect
= document
.getElementById('rect');
15 setTimeout("changeTransform()", 1);
17 function changeTransform() {
18 rect
.setAttribute("transform", "scale(1)");
19 document
.getElementById("root").setCurrentTime(1);
20 document
.write("This test passes if no assert is hit and PASS is printed: PASS.");
21 if (window
.testRunner
)
22 testRunner
.notifyDone();