605689-1.html 243 B

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