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

Side by Side Diff: LayoutTests/svg/animations/dynamic-modify-transform-without-baseval.html

Issue 1123203002: Deflake LayoutTests/svg/animations/dynamic-modify-transform-without-baseval.html [timeout] Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | 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 WK93063: This test passes if no assert is hit and PASS is printed. --> 3 <!-- Test for WK93063: This test passes if no assert is hit and PASS is printed. -->
4 <svg id="root" xmlns="http://www.w3.org/2000/svg"> 4 <svg id="root" xmlns="http://www.w3.org/2000/svg">
5 <rect id="rect"> 5 <rect id="rect">
6 <animateTransform attributeName="transform" dur="2s"/> 6 <animateTransform attributeName="transform" dur="2s"/>
7 </rect> 7 </rect>
8 <script> 8 <script>
9 if (window.testRunner) { 9 if (window.testRunner) {
10 testRunner.dumpAsText(); 10 testRunner.dumpAsText();
11 testRunner.waitUntilDone(); 11 testRunner.waitUntilDone();
12 } 12 }
13 13
14 var rect = document.getElementById('rect'); 14 var rect = document.getElementById('rect');
15 setTimeout("changeTransform()", 1); 15 setTimeout("changeTransform()", 3);
fs 2015/05/06 09:32:29 This looks like it "raises the bar" for flakyness,
16 16
17 function changeTransform() { 17 function changeTransform() {
18 rect.setAttribute("transform", "scale(1)"); 18 rect.setAttribute("transform", "scale(1)");
19 document.getElementById("root").setCurrentTime(1); 19 document.getElementById("root").setCurrentTime(1);
20 document.write("This test passes if no assert is hit and PASS is printed : PASS."); 20 document.write("This test passes if no assert is hit and PASS is printed : PASS.");
21 if (window.testRunner) 21 if (window.testRunner)
22 testRunner.notifyDone(); 22 testRunner.notifyDone();
23 } 23 }
24 </script> 24 </script>
25 </svg> 25 </svg>
26 </html> 26 </html>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698