2011-10-25 20:58:35 +04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
function boom()
|
|
|
|
{
|
|
|
|
var e = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
|
|
|
|
document.body.appendChild(e);
|
2023-10-02 15:36:17 +03:00
|
|
|
e.setAttribute("style", "transform: rotate3d(2, 3, 4, 45deg) scale(10);");
|
2011-10-25 20:58:35 +04:00
|
|
|
e.offsetHeight;
|
2023-11-20 15:36:30 +03:00
|
|
|
e.setAttribute("style", "transition-duration: 1ms;");
|
2011-10-25 20:58:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body onload="boom();"></body>
|
|
|
|
</html>
|