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

Side by Side 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, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <svg>
3 <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.
4 <rect id="#target" x="10" y="0" width="10" height="10" style="fill: gree n">
5 <set attributeName="y" attributeType="XML" to="10" begin="0s" dur="1s" f ill="freeze" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Shape" />
6 <set attributeName="x" attributeType="XML" to="20" begin="0s" dur="1s" f ill="freeze" requiredFeatures="http://www.w3.org/TR/SVG11/feature#BogusFeature" />
7 </rect>
8 </svg>
9 <script>
10 document.querySelector("svg").setCurrentTime(0.5);
11 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698