<!DOCTYPE html>
<html>
<script>
window.onload=function(){
  var a = document.createElement("div");
  document.documentElement.appendChild(a);
  a.animate([{background: "-webkit-gradient(radial, 1 2, 8, 3 4, 9, from(lime))"},
             {background: "-webkit-gradient(radial, 0e309 2, 8, 3 4, 9, from(lime))"}]);
};
</script>
</html>