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

Unified Diff: content/test/data/transform-animation.html

Issue 2800633003: Test that main thread frames cease to fire during composited animation
Patch Set: removestacktrace Created 3 years, 8 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 | « content/browser/webkit_browsertest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/transform-animation.html
diff --git a/content/test/data/transform-animation.html b/content/test/data/transform-animation.html
new file mode 100644
index 0000000000000000000000000000000000000000..77fe7b32fab2dac195d83a834cd364c5c4efd0a5
--- /dev/null
+++ b/content/test/data/transform-animation.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<style>
+@keyframes test {
+ to { transform: rotate(360deg); }
+}
+
+#target {
+ animation: test 1s infinite;
+}
+</style>
+<div id="target">Simple transform animation</div>
« no previous file with comments | « content/browser/webkit_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698