1272475-1.html (626B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>Bug 1272475 - scale function with an extreme large value</title> 5 <script> 6 function test() { 7 var div = document.createElement("div"); 8 div.setAttribute("style", "width: 1px; height: 1px; " + 9 "background: red;"); 10 document.body.appendChild(div); 11 div.animate([ { "transform": "scale(8)" }, 12 { "transform": "scale(9.5e+307)" }, 13 { "transform": "scale(32)" } ], 14 { "duration": 1000, "fill": "both" }); 15 } 16 </script> 17 </head> 18 <body onload="test()"> 19 </body> 20 </html>