Sign in
webkit
/
WebKit
/
71834eddd7ce860e058d7cdd0663754b7242ed03
/
.
/
LayoutTests
/
animations
/
keyframe-pseudo-shadow-expected.html
blob: 36d0d00dbae728f49356bfbafdd487893431cdb1 [
file
] [
log
] [
blame
]
<!DOCTYPE html>
<style>
div
::
after
{
display
:
inline-block
;
content
:
'Hello world!'
;
animation
:
spin
1s
infinite
;
}
@
keyframes spin
{
from
{
transform
:
rotate
(
180deg
)
}
to
{
transform
:
rotate
(
180deg
)
}
}
</style>
<div></div>