repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
animations
/
skew-notsequential-compositor.html
blob
8f6925b44f3f29c09079b6b02fa2a967d2116c8d
1
<!DOCTYPE
html
>
2
<style>
3
div {
4
width:
100
px;
5
height:
100
px;
6
border: solid;
7
margin:
50
px;
8
position: absolute;
9
will-change: transform;
10
}
11
12
#test {
13
border-color: green;
14
15
animation-name: anim;
16
animation-duration:
2
e10s;
17
animation-delay: -
1
e10s;
18
animation-fill-mode: forwards;
19
animation-timing-function: linear;
20
}
21
22
@keyframes anim {
23
from {
24
transform: skew(-
45
deg,
45
deg);
25
}
26
to {
27
transform: skew(-
45
deg,
45
deg);
28
}
29
}
30
</style>
31
32
<div
id
=
"test"
></div>