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

Unified Diff: third_party/WebKit/Source/core/paint/test_data/opacity-animation.html

Issue 2608543002: Store compositor element id in paint properties for animated objects. (Closed)
Patch Set: Move element id to paint property nodes. Created 4 years 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
Index: third_party/WebKit/Source/core/paint/test_data/opacity-animation.html
diff --git a/third_party/WebKit/Source/core/paint/test_data/opacity-animation.html b/third_party/WebKit/Source/core/paint/test_data/opacity-animation.html
new file mode 100644
index 0000000000000000000000000000000000000000..0cfdd94757f09c04b27dcef70c8094e77fc22868
--- /dev/null
+++ b/third_party/WebKit/Source/core/paint/test_data/opacity-animation.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<style>
+div {
+ width: 100px;
+ height: 100px;
+ background-color: red;
+}
+.animate {
+ animation-name: test;
+ animation-duration: 4s;
+}
+@keyframes test {
+ from { opacity: 0.0;}
+ to { opacity: 1.0;}
+}
+</style>
+<div id="target" class="animate"></div>;

Powered by Google App Engine
This is Rietveld 408576698