adds tests for osr

This commit is contained in:
gellert 2016-07-31 17:10:53 +02:00
parent 5525ac36b8
commit 35ee99265e
7 changed files with 177 additions and 8 deletions

View file

@ -0,0 +1,11 @@
<html>
<body>
<div style="width: 10px; height: 10px;" id="dirty"></div>
</body>
<script type="text/javascript" charset="utf-8">
setInterval(function(){
document.getElementById('dirty').style.backgroundColor =
'#'+(Math.random()*0xFFFFFF<<0).toString(16)
}, 10)
</script>
</html>