mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
30 lines
394 B
HTML
30 lines
394 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<style>
|
||
|
|
||
|
@keyframes anim {
|
||
|
20% {
|
||
|
color: green;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
animation-name: anim;
|
||
|
animation-duration: 40s;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
<style>
|
||
|
|
||
|
:link { background: red ! important; }
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body onload="document.documentElement.style.border = 'initial';">
|
||
|
<div><a href="data:text/html,unlikely to be visited"></a></div>
|
||
|
</body>
|
||
|
</html>
|