bbuecherl

http://stackoverflow.com/questions/23561325/chrome-is-compos

May 27th, 2014
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.32 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <title>Test</title>
  5.     </head>
  6.     <body>
  7.         <script type="text/Javascript">
  8.             var x = 0;
  9.  
  10.             ( function tick( ) {
  11.                 window.requestAnimationFrame( tick );
  12.                 x++;
  13.             }( ) );
  14.         </script>
  15.     </body>
  16. </html>
Add Comment
Please, Sign In to add comment