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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/start-time-grouping.html

Issue 2093423002: Move web-animations-api tests not being upstreamed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Undo move of reject-hyphen.html Created 4 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 <script src="../resources/testharness.js"></script> 2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script> 3 <script src="../resources/testharnessreport.js"></script>
4 <style> 4 <style>
5 div { 5 div {
6 width: 50px; 6 width: 50px;
7 height: 50px; 7 height: 50px;
8 background: green; 8 background: green;
9 } 9 }
10 </style> 10 </style>
(...skipping 30 matching lines...) Expand all
41 }); 41 });
42 }); 42 });
43 43
44 async_test(t => { 44 async_test(t => {
45 awaitFrame(() => anim2 && anim2.startTime != null).then(() => { 45 awaitFrame(() => anim2 && anim2.startTime != null).then(() => {
46 t.step(() => assert_not_equals(Math.round(anim1.startTime), Math.round(anim2 .startTime))); 46 t.step(() => assert_not_equals(Math.round(anim1.startTime), Math.round(anim2 .startTime)));
47 t.done(); 47 t.done();
48 }); 48 });
49 }); 49 });
50 </script> 50 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698