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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <style>
5 @keyframes move {
6 from {
7 transform: translate(-200px, 0);
8 }
9 to {
10 transform: translate(200px, 0);
11 }
12 }
13
14 div {
15 height: 200px;
16 width: 200px;
17
18 animation-duration: 1.5s;
19 animation-iteration-count: infinite;
20 animation-name: move;
21
22 background: black;
23 }
24 </style>
25 </head>
26 <body>
27 <div></div>
28 </body>
29 </html>
OLDNEW
« 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