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

Side by Side Diff: LayoutTests/virtual/threaded/animations/zoom-responsive-transform-animation-expected.html

Issue 1347493004: Recomposite transform animations when CSS zoom changes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix tests 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 div {
4 position: absolute;
5 width: 100px;
6 height: 100px;
7 background: black;
8 animation: test 1e8s;
9 }
10 @keyframes test {
11 from {transform: translate(100px, 100px);}
12 to {transform: translate(100px, 100px);}
13 }
14 </style>
15 <div></div>
16 <script>
17 internals.setZoomFactor(2);
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698