| Index: LayoutTests/svg/animations/resources/animation-policy.svg
|
| diff --git a/LayoutTests/svg/animations/resources/animation-policy.svg b/LayoutTests/svg/animations/resources/animation-policy.svg
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..25a3ace5658ff9589e3b487f8ef7a6423ca3821b
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/animations/resources/animation-policy.svg
|
| @@ -0,0 +1,14 @@
|
| +<?xml version="1.0" encoding="UTF-8"?>
|
| +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
|
| +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
| +
|
| +<animate id="an1" attributeName="visibility" to="visible" begin="0s" dur="3s" repeatCount="indefinite"/>
|
| +<rect x="50" y="0" width="100" height="100" fill="green">
|
| + <set id="top" attributeName="y" to="30"
|
| + begin="0s; bottom.end" dur="1s" fill="freeze"/>
|
| + <set id="middle" attributeName="y" to="50"
|
| + begin="top.end" dur="1s" fill="freeze"/>
|
| + <set id="bottom" attributeName="y" to="100"
|
| + begin="middle.end" dur="1s" fill="freeze"/>
|
| +</rect>
|
| +</svg>
|
|
|