зеркало из https://github.com/mozilla/gecko-dev.git
32 строки
497 B
HTML
32 строки
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>
|