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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/compositing/transitions/skew-notsequential-compositor-expected.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/compositing/transitions/skew-notsequential-compositor.html
diff --git a/LayoutTests/compositing/transitions/skew-notsequential-compositor.html b/LayoutTests/compositing/transitions/skew-notsequential-compositor.html
new file mode 100644
index 0000000000000000000000000000000000000000..09811810bd840f10d8985a90ddc58ebbfe803c23
--- /dev/null
+++ b/LayoutTests/compositing/transitions/skew-notsequential-compositor.html
@@ -0,0 +1,24 @@
+<style>
+div{
+ width: 0;
+ height: 0;
+ margin: 10px;
+ border-right: solid 10px aqua;
+ border-left: solid 10px aqua;
+ border-top: solid 10px red;
+ border-bottom: solid 10px red;
+ animation-name: test;
+ animation-duration: 2e10s;
+ animation-delay: -1e10s;
+ animation-fill-mode: forwards;
+}
+@keyframes test{
+ 0%{
+ transform: skew(0deg, 0deg);
+ }
+ 100%{
+ transform: skew(-45deg, 45deg);
+ }
+}
+</style>
+<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.
« 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