mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
32 lines
497 B
HTML
32 lines
497 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
|
|
@-moz-keyframes togreen {
|
|
100% {
|
|
color: green;
|
|
}
|
|
}
|
|
|
|
.a:after {
|
|
animation-name: togreen;
|
|
animation-duration: 10s;
|
|
}
|
|
|
|
</style>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.setAttribute("class", "a");
|
|
document.documentElement.offsetHeight;
|
|
document.documentElement.appendChild(document.createElement("span"));
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|