blob: a6437fd9f11b115f99f8d4400947df0632c934c6 [file] [log] [blame]
<!DOCTYPE html>
<body>
<div id='testElement' style='display: none'>TEST</div>
<script>
setInterval(function() {
// Change the style of a display:none element.
var testElement = document.getElementById("testElement");
testElement.style["left"] = "" + Math.floor((Math.random() * 10) + 1) + "px";
}, 0);
</script>
</body>