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

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

Issue 2608543002: Store compositor element id in paint properties for animated objects. (Closed)
Patch Set: Hide create-dom-node method. Created 3 years, 12 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
Index: third_party/WebKit/Source/core/paint/test_data/transform-animation.html
diff --git a/third_party/WebKit/Source/core/paint/test_data/transform-animation.html b/third_party/WebKit/Source/core/paint/test_data/transform-animation.html
new file mode 100644
index 0000000000000000000000000000000000000000..600e84010cfbbfe944f839a255c50dfe208587b3
--- /dev/null
+++ b/third_party/WebKit/Source/core/paint/test_data/transform-animation.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<style>
+@keyframes test {
+ 0% { transform: translate(1em, 1em) }
+ 100% { transform: translate(2em, 2em) }
+}
+
+.animate {
+ animation-name: test;
+ animation-duration: 1s;
+}
+</style>
+<div id="target" class="animate"></div>;

Powered by Google App Engine
This is Rietveld 408576698