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

Side by Side Diff: third_party/WebKit/LayoutTests/virtual/threaded/animations/element-animate-positive-delay.html

Issue 2427293003: Fix calls to element.animate() with positive delays not being composited (Closed)
Patch Set: Created 4 years, 2 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 | « no previous file | third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp » ('j') | 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 <script src="../../../resources/testharness.js"></script>
3 <script src="../../../resources/testharnessreport.js"></script>
4 <div id="target"></div>
5 <script>
6 promise_test(function() {
7 var animation = target.animate({
8 transform: ['rotate(0deg)', 'rotate(180deg)'],
9 }, {
10 duration: 100000,
11 delay: 1,
12 });
13 return animation.ready.then(() => {
14 assert_true(internals.isCompositedAnimation(animation));
15 });
16 }, 'element.animate() with a positive delay should run compositor animations');
17 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698