605689-1.html (243B)
1 <!DOCTYPE html> 2 <script> 3 4 function boom() 5 { 6 var r = document.documentElement; 7 r.style.display = "table-cell"; 8 r.style.transitionProperty = "x"; 9 window.getComputedStyle(r).transitionProperty; 10 } 11 12 </script> 13 <body onload="boom();"></body>