blob: d9d99a5b06780fcb24e556100eabde99dbcf4099 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<html>
<script>
window.onload=function(){
var a = document.createElement("div");
document.documentElement.appendChild(a);
a.animate([{borderLeftColor:"black"},
{borderLeftColor:"hsl(0,0e309%,0%)"}]);
};
</script>
</html>
|