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

Side by Side Diff: LayoutTests/svg/animations/script-tests/animate-fill-freeze-with-repeatDur.js

Issue 19946002: [SVG] Handle animation freeze when 'repeatDur' is not a multiple of 'dur' (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 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
(Empty)
1 description("Test for animation freeze when repeatDur is not a multiple of dur") ;
2 embedSVGTestCase("resources/animate-fill-freeze-with-repeatDur.svg");
3
4 // Setup animation test
5 function sample1() {
6 shouldBeCloseEnough("rect1.x.animVal.value", "0");
7 shouldBe("rect1.x.baseVal.value", "0");
8 }
9
10 function sample2() {
11 shouldBeCloseEnough("rect1.x.animVal.value", "150");
12 shouldBe("rect1.x.baseVal.value", "0");
13 }
14
15 function executeTest() {
16 var rects = rootSVGElement.ownerDocument.getElementsByTagName("rect");
17 rect1 = rects[0];
18
19 const expectedValues = [
20 // [animationId, time, sampleCallback]
21 ["anim", 0.0, sample1],
22 ["anim", 6.0, sample2]
23 ];
24
25 runAnimationTest(expectedValues);
26 }
27
28 window.animationStartsImmediately = true;
29 var successfullyParsed = true;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698