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

Side by Side Diff: LayoutTests/compositing/transitions/skew-notsequential-compositor.html

Issue 1315973003: Add Layout Test to test if skew is applied on both axes together not sequentially on Compositor (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing png file 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
« no previous file with comments | « no previous file | LayoutTests/compositing/transitions/skew-notsequential-compositor-expected.png » ('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 <style>
2 div{
3 width: 0;
4 height: 0;
5 margin: 10px;
6 border-right: solid 10px aqua;
7 border-left: solid 10px aqua;
8 border-top: solid 10px red;
9 border-bottom: solid 10px red;
10 animation-name: test;
11 animation-duration: 2e10s;
12 animation-delay: -1e10s;
13 animation-fill-mode: forwards;
14 }
15 @keyframes test{
16 0%{
17 transform: skew(0deg, 0deg);
18 }
19 100%{
20 transform: skew(-45deg, 45deg);
21 }
22 }
23 </style>
24 <div></div>
alancutter (OOO until 2018) 2015/09/03 01:15:34 For test readability you should have a red expecte
nainar1 2015/09/03 04:07:29 Done.
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/compositing/transitions/skew-notsequential-compositor-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698