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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/flex-composited-animated-table-row-background.html

Issue 2784673004: Consider compositing state in row background display item client accessor. (Closed)
Patch Set: Remove unnecessary pos: rel in expected html. Created 3 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/compositing/flex-composited-animated-table-row-background-expected.html » ('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 <style>
3 .flex-item {
4 flex: 1 1 ;
5 position: relative;
6 }
7
8 .moving-item {
9 animation-name: moving;
10 animation-duration: 1s;
11 }
12
13 @keyframes moving {
14 0% {
15 flex: 1 1;
16 opacity: 0.6;
17 }
18 100% {
19 flex: 0.0001 10;
20 }
21 }
22 </style>
23 <div style="display: flex">
24 <div id="target" class="flex-item moving-item">y</div>
25 <div class="flex-item">
26 <table>
27 <tr style="background-color: red">
28 <td style="position: relative">
29 x
30 </td>
31 </tr>
32 </table>
33 </div>
34 </div>
35 <script>
36 if (window.testRunner)
37 testRunner.waitUntilDone();
38 target.addEventListener('animationend', function(event) {
39 target.classList.remove('moving-item');
40 if (window.testRunner)
41 testRunner.notifyDone();
42 });
43 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/compositing/flex-composited-animated-table-row-background-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698