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

Side by Side Diff: LayoutTests/virtual/threaded/animations/composited-filter-webkit-filter.html

Issue 1319083003: Ignore filter property in CSS Animations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: -\n Created 5 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/animation/css/CSSAnimations.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 <style>
5 @keyframes test {
6 from {
7 -webkit-filter: saturate(0);
8 filter: none;
9 }
10 to {
11 -webkit-filter: saturate(1);
12 filter: none;
13 }
14 }
15 #target {
16 animation: test 1e10s;
17 }
18 </style>
19 <div id="target"></div>
20 <script>
21 var asyncHandle = async_test('-webkit-filter + filter animations get composited. ');
22 requestAnimationFrame(_ => {
23 requestAnimationFrame(_ => {
24 asyncHandle.step(_ => {
25 assert_true(internals.isCompositedAnimation(target.getAnimations()[0]));
26 });
27 asyncHandle.done();
28 });
29 });
30 </script>
OLDNEW
« no previous file with comments | « no previous file | Source/core/animation/css/CSSAnimations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698