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

Unified Diff: LayoutTests/svg/repaint/resources/animate-center.svg

Issue 1287773002: Deflake svg/repaint/image-animation-with-zoom.html (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/svg/repaint/image-animation-with-zoom.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/repaint/resources/animate-center.svg
diff --git a/LayoutTests/svg/repaint/resources/animate-center.svg b/LayoutTests/svg/repaint/resources/animate-center.svg
index 9d823c690bae62eb82ca5a6f0e3645855282c3b6..150869feaade3bf8e534973c967f94e03c8dad3d 100644
--- a/LayoutTests/svg/repaint/resources/animate-center.svg
+++ b/LayoutTests/svg/repaint/resources/animate-center.svg
@@ -1,17 +1,19 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">
+<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10">
<defs>
<style type="text/css"><![CDATA[
#square {
fill: red;
- -webkit-animation: keyframes 0.20s;
+ -webkit-animation: keyframes 0.01s;
-webkit-animation-fill-mode: forwards;
-webkit-animation-timing-function: step-end;
}
@-webkit-keyframes keyframes {
0% { fill: pink }
+ /* To prevent flakiness, rapidly switch to green */
+ 1% { fill: green }
100% { fill: green }
}
]]></style>
</defs>
- <rect id="square" width="100" height="100" x="50" y="50"></rect>
+ <rect id="square" width="5" height="5" x="5" y="5"></rect>
</svg>
« no previous file with comments | « LayoutTests/svg/repaint/image-animation-with-zoom.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698