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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/zoom-responsive-transform-animation-expected.html

Issue 1866333002: Support additive animations on CSS property transform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review changes Created 4 years, 8 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 <style> 2 <style>
3 #container { 3 #container {
4 position: absolute; 4 position: absolute;
5 top: 0; 5 top: 0;
6 font-size: 10px; 6 font-size: 10px;
7 } 7 }
8 .target { 8 .target {
9 width: 40px; 9 width: 40px;
10 height: 40px; 10 height: 40px;
11 border-top: solid; 11 border-top: solid;
12 border-left: solid; 12 border-left: solid;
13 margin-bottom: 20px; 13 margin-bottom: 20px;
14 } 14 }
15 </style> 15 </style>
16 <div id="container"></div> 16 <div id="container"></div>
17 <script> 17 <script>
18 internals.setZoomFactor(2);
19
18 [ 20 [
19 'perspective(200px) translate3D(10px, 10px, 10px)', 21 'perspective(200px) translate3D(10px, 10px, 10px)',
20 'matrix(0, 1, 1, 0, 10, 10)', 22 'matrix(0, 1, 1, 0, 10, 10)',
21 'matrix3d(' + 23 'matrix3d(' +
22 '0, 1, 0, 0, ' + 24 '0, 1, 0, 0, ' +
23 '1, 0, 0, 0, ' + 25 '1, 0, 0, 0, ' +
24 '0, 0, 1, 0, ' + 26 '0, 0, 1, 0, ' +
25 '10, 10, 10, 1)', 27 '10, 10, 10, 1)',
26 'perspective(200px) rotateY(45deg)', 28 'perspective(200px) rotateY(45deg)',
27 'none', // Composited animations fail to zoom the last expectation correctly. ): 29 'none', // Composited animations fail to zoom the last expectation correctly. ):
28 ].forEach(transform => { 30 ].forEach(transform => {
29 var text = document.createElement('div'); 31 var text = document.createElement('div');
30 text.textContent = transform; 32 text.textContent = transform;
31 container.appendChild(text); 33 container.appendChild(text);
32 34
33 var target = document.createElement('div'); 35 var target = document.createElement('div');
34 target.classList.add('target'); 36 target.classList.add('target');
35 container.appendChild(target); 37 container.appendChild(target);
36 target.animate([ 38 target.animate([
37 {transform: transform}, 39 {transform: transform},
38 {transform: transform}, 40 {transform: transform},
39 ], 1e8); 41 ], 1e8);
40 }); 42 });
41 43
42 internals.setZoomFactor(2);
43
44 // We must wait a frame to let compositor animations render. 44 // We must wait a frame to let compositor animations render.
45 if (window.testRunner) 45 if (window.testRunner)
46 testRunner.waitUntilDone(); 46 testRunner.waitUntilDone();
47 47
48 requestAnimationFrame(() => { 48 requestAnimationFrame(() => {
49 requestAnimationFrame(() => { 49 requestAnimationFrame(() => {
50 if (window.testRunner) 50 if (window.testRunner)
51 testRunner.notifyDone(); 51 testRunner.notifyDone();
52 }); 52 });
53 }); 53 });
54 </script> 54 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698