| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style type="text/css"> | 3 <style type="text/css"> |
| 4 #draggable { | 4 #draggable { |
| 5 padding: 5pt; | 5 padding: 5pt; |
| 6 border: 3px solid #00cc00; | 6 border: 3px solid #00cc00; |
| 7 background: #00cccc; | 7 background: #00cccc; |
| 8 width: 80px; | 8 width: 80px; |
| 9 cursor: hand; | 9 cursor: hand; |
| 10 } | 10 } |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 </script> | 104 </script> |
| 105 </head> | 105 </head> |
| 106 <body> | 106 <body> |
| 107 For manual testing, hold middle button in scrollable and move aroudn mouse point
er for scrolling, then release middle button to stop scrolling. | 107 For manual testing, hold middle button in scrollable and move aroudn mouse point
er for scrolling, then release middle button to stop scrolling. |
| 108 <div id="container"> | 108 <div id="container"> |
| 109 Scrollable | 109 Scrollable |
| 110 <div id="scrollable"> | 110 <div id="scrollable"> |
| 111 </div> | 111 </div> |
| 112 </div> | 112 </div> |
| 113 <div id="console"></div> | 113 <div id="console"></div> |
| 114 <script src="../../../../fast/js/resources/js-test-pre.js"></script> | 114 <script src="../js/resources/js-test-pre.js"></script> |
| 115 <script> | 115 <script> |
| 116 description('Check pan scroll by drag mouse'); | 116 description('Check pan scroll by drag mouse'); |
| 117 setUpTest(); | 117 setUpTest(); |
| 118 </script> | 118 </script> |
| 119 <script src="../../../../fast/js/resources/js-test-post.js"></script> | 119 <script src="../js/resources/js-test-post.js"></script> |
| 120 </body> | 120 </body> |
| 121 </html> | 121 </html> |
| OLD | NEW |