Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(302)

Unified Diff: LayoutTests/svg/animations/svg-tests-on-smil-elements.html

Issue 424753002: SVGSMILElement should respect SVGTests results (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: impl Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/svg/animations/svg-tests-on-smil-elements.html
diff --git a/LayoutTests/svg/animations/svg-tests-on-smil-elements.html b/LayoutTests/svg/animations/svg-tests-on-smil-elements.html
new file mode 100644
index 0000000000000000000000000000000000000000..88ded80db70fea0706750a140bad54f82b3fdc72
--- /dev/null
+++ b/LayoutTests/svg/animations/svg-tests-on-smil-elements.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<svg>
+ <rect id="#reference" x="10" y="10" width="10" height="10" style="fill: red"/>
fs 2014/07/28 13:21:24 Doesn't look like this needs to be a pixel (or tre
kouhei (in TOK) 2014/07/28 13:27:42 Acknowledged.
+ <rect id="#target" x="10" y="0" width="10" height="10" style="fill: green">
+ <set attributeName="y" attributeType="XML" to="10" begin="0s" dur="1s" fill="freeze" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Shape" />
+ <set attributeName="x" attributeType="XML" to="20" begin="0s" dur="1s" fill="freeze" requiredFeatures="http://www.w3.org/TR/SVG11/feature#BogusFeature" />
+ </rect>
+</svg>
+<script>
+document.querySelector("svg").setCurrentTime(0.5);
+</script>

Powered by Google App Engine
This is Rietveld 408576698