mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
217 B
XML
18 lines
217 B
XML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<style>
|
||
|
|
||
|
* { animation-name: a; animation-duration: 72ms }
|
||
|
@keyframes a { 60% { transform: skewx(30deg); } }
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<svg></svg>
|
||
|
|
||
|
</body>
|
||
|
</html>
|