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

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: Reformat test page 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
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

Powered by Google App Engine
This is Rietveld 408576698