Sign in
nest-open-source
/
manifest_repos
/
chromium_src
/
1389d67935ffbffe8a70c1fa06867f6cf7ecf464
/
.
/
chromium
/
src
/
third_party
/
blink
/
renderer
/
core
/
animation
/
test_data
/
scale-animation.html
blob: e92917a95ea63c250b3f995452f4e439f363dc09 [
file
] [
log
] [
blame
]
<!DOCTYPE html>
<style>
@
keyframes test
{
0%
{
transform
:
scale
(
2
);
}
100%
{
transform
:
scale
(
5
);
}
}
.
animate
{
animation-name
:
test
;
animation-duration
:
1s
;
}
</style>
<div
id
=
"target"
class
=
"animate"
></div>