mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
14 lines
243 B
HTML
14 lines
243 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var r = document.documentElement;
|
|
r.style.display = "table-cell";
|
|
r.style.transitionProperty = "x";
|
|
window.getComputedStyle(r).transitionProperty;
|
|
}
|
|
|
|
</script>
|
|
<body onload="boom();"></body>
|