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

Unified Diff: content/test/data/page_with_animation.html

Issue 2779713002: Add a test checking that compositor works in a reused renderer. (Closed)
Patch Set: Don't create a new shell. 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/renderer_host/render_widget_host_view_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/page_with_animation.html
diff --git a/content/test/data/page_with_animation.html b/content/test/data/page_with_animation.html
new file mode 100644
index 0000000000000000000000000000000000000000..9c1c977a6ae8e9e69b84c37d42d415309fd9493b
--- /dev/null
+++ b/content/test/data/page_with_animation.html
@@ -0,0 +1,29 @@
+<!doctype html>
+<html>
+ <head>
+ <style>
+ @keyframes move {
+ from {
+ transform: translate(-200px, 0);
+ }
+ to {
+ transform: translate(200px, 0);
+ }
+ }
+
+ div {
+ height: 200px;
+ width: 200px;
+
+ animation-duration: 1.5s;
+ animation-iteration-count: infinite;
+ animation-name: move;
+
+ background: black;
+ }
+ </style>
+ </head>
+ <body>
+ <div></div>
+ </body>
+</html>
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698