Home | History | Annotate | Download | only in touch_MouseScroll
      1 <!doctype html>
      2 <html lang="en">
      3 <head>
      4 <meta charset="utf-8">
      5 <title>Long Page</title>
      6 <style type="text"></style>
      7 <script type="text/javascript">
      8 
      9     var userWidth = screen.width;
     10     var userHeight = screen.height;
     11     var pageReady = false;
     12 
     13     function resizePage()
     14     {
     15         document.getElementById("long_page").style.width = parseInt(userWidth * 15) + "px";
     16         document.getElementById("long_page").style.height = parseInt(userHeight * 15) + "px";
     17         pageReady = true;
     18     }
     19 
     20 </script>
     21 </head>
     22 <body onload="resizePage()">
     23 <div id="long_page"></div>
     24 </html>
     25