OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="iso-8859-1" ?> | |
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG Tiny 1.1//EN" | |
3 "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd"> | |
4 <svg viewBox="0 0 500 350" onload="loaded()" | |
5 xmlns="http://www.w3.org/2000/svg" version="1.1" baseProfile="tiny" | |
6 xmlns:xlink="http://www.w3.org/1999/xlink"> | |
7 <g id="test-body-content" font-family="SVGFreeSansASCII,sans-serif" font-size= "18"> | |
8 <rect x="0" y="0" width="480" height="360" fill="#fff" /> | |
9 <g transform="translate(40,-20) scale(0.45)"> | |
10 <g> | |
11 <circle cx="0" cy="0" r="70" fill="#f00"> | |
12 <animateMotion | |
13 dur="4s" | |
14 path="M100,100c0,200 200,200 200,0" | |
15 repeatDur="8s" | |
16 accumulate="sum" | |
17 fill="freeze" /> | |
18 </circle> | |
19 <circle cx="0" cy="0" r="60" | |
20 stroke="#00f" stroke-width="21" | |
21 fill="#f00"> | |
22 <animateMotion | |
23 dur="4s" | |
24 path="M100,100c0,200 200,200 200,0" | |
25 repeatDur="8s" | |
26 accumulate="sum" | |
27 rotate="auto" | |
28 fill="freeze" /> | |
29 </circle> | |
30 <circle cx="0" cy="0" r="40" | |
31 stroke="#00f" stroke-width="21" | |
32 fill="#f00"> | |
33 <animateMotion | |
34 dur="4s" | |
35 path="M100,100c0,200 200,200 200,0" | |
36 repeatDur="8s" | |
37 accumulate="sum" | |
38 rotate="auto-reverse" | |
39 fill="freeze" /> | |
40 </circle> | |
41 <circle cx="0" cy="0" r="20" | |
42 stroke="#00f" stroke-width="21" | |
43 fill="#f00"> | |
44 <animateMotion | |
45 dur="4s" | |
46 path="M100,100c0,200 200,200 200,0" | |
47 repeatDur="8s" | |
48 accumulate="sum" | |
49 rotate="60" | |
50 fill="freeze" /> | |
51 </circle> | |
52 | |
53 </g> | |
54 | |
55 <g fill="none" stroke-width="20" | |
56 stroke="#888" stroke-linecap="round" stroke-linejoin="round"> | |
57 <path d="M100,100c0,200 200,200 200,0"> | |
58 <set attributeName="display" to="none" begin="4s" /> | |
59 </path> | |
pdr.
2013/07/17 04:11:30
Minor nit: the indentation is wrong here
| |
60 <path d="M400,200c0,200 200,200 200,0" /> | |
61 </g> | |
62 </g> | |
63 </g> | |
64 <script> | |
65 if (window.testRunner) | |
66 testRunner.waitUntilDone(); | |
67 | |
68 function loaded() { | |
69 document.documentElement.setCurrentTime(8); | |
70 | |
71 if (window.testRunner) | |
72 testRunner.notifyDone(); | |
73 } | |
74 </script> | |
75 </svg> | |
OLD | NEW |