mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-12-25 06:29:21 +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>
|