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

Unified Diff: third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h

Issue 2693843002: Don't ignore "none" in underlying image lists for animations (Closed)
Patch Set: Remove dependency Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h
diff --git a/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h b/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h
index cbea878f1d4542107f97ea2afa6cb9a58c51ec51..82558d6a9f97f7bdb5a1cc3cbd52ab28b934fb0c 100644
--- a/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h
+++ b/third_party/WebKit/Source/core/animation/ImageListPropertyFunctions.h
@@ -36,7 +36,7 @@ class ImageListPropertyFunctions {
}
result.clear();
- while (fillLayer && fillLayer->image()) {
+ while (fillLayer) {
result.push_back(fillLayer->image());
fillLayer = fillLayer->next();
}
« no previous file with comments | « third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698