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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/timing/timing-model.html

Issue 2979503002: Move animation timing tests to subdirectory (Closed)
Patch Set: Created 3 years, 5 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
1 <!doctype html> 1 <!doctype html>
2 <meta charset="utf-8"> 2 <meta charset="utf-8">
3 <body> 3 <body>
4 <script> 4 <script>
5 onload = function() { 5 onload = function() {
6 6
7 log('Sanity tests:'); 7 log('Sanity tests:');
8 assertIterationTime('1s linear', [ 8 assertIterationTime('1s linear', [
9 {is: null, at: -1}, 9 {is: null, at: -1},
10 {is: 0, at: 0}, 10 {is: 0, at: 0},
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 } 325 }
326 @keyframes test { 326 @keyframes test {
327 0% { 327 0% {
328 left: 0px; 328 left: 0px;
329 } 329 }
330 100% { 330 100% {
331 left: 1px; 331 left: 1px;
332 } 332 }
333 } 333 }
334 </style> 334 </style>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698