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

Side by Side Diff: LayoutTests/svg/animations/animate-linear-discrete-additive-b.svg

Issue 10445006: Merge 116458 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/
Patch Set: Created 8 years, 7 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
OLDNEW
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <svg viewBox="0 0 300 200" xmlns="http://www.w3.org/2000/svg" onload="loaded()"> 2 <svg viewBox="0 0 300 200" xmlns="http://www.w3.org/2000/svg" onload="loaded()">
3 <title>Test mixed cardinality animations</title> 3 <title>Test mixed cardinality animations</title>
4 <g transform="translate(50,20)"> 4 <g transform="translate(50,20)">
5 <text x="0" y="0"> 5 <text x="0" y="0">
6 <!-- Test that an animated list of different cardinality works properly --> 6 <!-- Test that an animated list of different cardinality works properly -->
7 ABC 7 ABC
8 <animate attributeName="x" dur="5s" repeatCount="10" values="1; 2,3,4,5; 3"/> 8 <animate attributeName="x" dur="5s" repeatCount="10" values="1; 2,3,4,5; 3"/>
9 </text> 9 </text>
10 <text x="0" y="30"> 10 <text x="0" y="30">
(...skipping 16 matching lines...) Expand all
27 if (window.layoutTestController) 27 if (window.layoutTestController)
28 layoutTestController.waitUntilDone(); 28 layoutTestController.waitUntilDone();
29 29
30 function loaded() { 30 function loaded() {
31 document.documentElement.setCurrentTime(8); 31 document.documentElement.setCurrentTime(8);
32 if (window.layoutTestController) 32 if (window.layoutTestController)
33 layoutTestController.notifyDone(); 33 layoutTestController.notifyDone();
34 } 34 }
35 </script> 35 </script>
36 </svg> 36 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698