Changeset 155890 in webkit
- Timestamp:
- Sep 16, 2013, 12:36:18 PM (12 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r155885 r155890 1 2013-09-16 Alexey Proskuryakov <ap@apple.com> 2 3 svg/animations/smil-leak-*.svg tests are flaky 4 https://bugs.webkit.org/show_bug.cgi?id=114280 5 6 The tests were still flaky. Changed retry timeout from 0 to 100 ms as previously 7 suggested by Geoff. 8 9 * svg/animations/smil-leak-dynamically-added-element-instances.svg: 10 * svg/animations/smil-leak-element-instances-noBaseValRef.svg: 11 * svg/animations/smil-leak-element-instances.svg: 12 * svg/animations/smil-leak-elements.svg: 13 1 14 2013-09-16 Alexey Proskuryakov <ap@apple.com> 2 15 -
trunk/LayoutTests/svg/animations/smil-leak-dynamically-added-element-instances.svg
r155882 r155890 67 67 log("PASS"); 68 68 else if (--attemptsToFinish) { 69 setTimeout(finishTest, 0);69 setTimeout(finishTest, 100); 70 70 return; 71 71 } else -
trunk/LayoutTests/svg/animations/smil-leak-element-instances-noBaseValRef.svg
r155882 r155890 60 60 log("PASS"); 61 61 else if (--attemptsToFinish) { 62 setTimeout(finishTest, 0);62 setTimeout(finishTest, 100); 63 63 return; 64 64 } else -
trunk/LayoutTests/svg/animations/smil-leak-element-instances.svg
r155882 r155890 63 63 log("PASS"); 64 64 else if (--attemptsToFinish) { 65 setTimeout(finishTest, 0);65 setTimeout(finishTest, 100); 66 66 return; 67 67 } else -
trunk/LayoutTests/svg/animations/smil-leak-elements.svg
r155882 r155890 58 58 log("PASS"); 59 59 else if (--attemptsToFinish) { 60 setTimeout(finishTest, 0);60 setTimeout(finishTest, 100); 61 61 return; 62 62 } else
Note:
See TracChangeset
for help on using the changeset viewer.