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

Side by Side Diff: LayoutTests/svg/animations/animate-keytimes-crash.html

Issue 12310030: Merge 142365 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 10 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
« no previous file with comments | « no previous file | LayoutTests/svg/animations/animate-keytimes-crash-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 Test for WK108828: This test passes if it does not crash. 3 Test for WK108828: This test passes if it does not crash.
4 <svg id="svg" xmlns="http://www.w3.org/2000/svg" width="500" height="500"> 4 <svg id="svg" xmlns="http://www.w3.org/2000/svg" width="500" height="500">
5 <!-- animateMotion with invalid keyTimes. --> 5 <!-- animateMotion with invalid keyTimes. -->
6 <rect x="0" y="0" width="100" height="100" fill="green"> 6 <rect x="0" y="0" width="100" height="100" fill="green">
7 <animateMotion keyTimes="0; 0.5; 0.5; 0.5; 1" values="M 0 0 Z; M 0 0 Z"/> 7 <animateMotion keyTimes="0; 0.5; 0.5; 0.5; 1" values="M 0 0 Z; M 0 0 Z"/>
8 </rect> 8 </rect>
9 </svg> 9 </svg>
10 <script> 10 <script>
11 if (window.testRunner()) 11 if (window.testRunner())
12 testRunner.waitUntilDone(); 12 testRunner.waitUntilDone();
13 13
14 setTimeout(function() { 14 setTimeout(function() {
15 var svg = document.getElementById('svg'); 15 var svg = document.getElementById('svg');
16 svg.pauseAnimations(); 16 svg.pauseAnimations();
17 svg.setCurrentTime(10); 17 svg.setCurrentTime(10);
18 if (window.testRunner) 18 if (window.testRunner)
19 testRunner.notifyDone(); 19 testRunner.notifyDone();
20 }, 1); 20 }, 1);
21 </script> 21 </script>
22 </html> 22 </html>
23 23
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/animations/animate-keytimes-crash-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698