| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 </script> | 106 </script> |
| 107 </head> | 107 </head> |
| 108 <body> | 108 <body> |
| 109 For manual testing, hold middle button in scrollable and move aroudn mouse point
er for scrolling, then release middle button to stop scrolling. | 109 For manual testing, hold middle button in scrollable and move aroudn mouse point
er for scrolling, then release middle button to stop scrolling. |
| 110 <div id="container"> | 110 <div id="container"> |
| 111 Scrollable | 111 Scrollable |
| 112 <div id="scrollable"> | 112 <div id="scrollable"> |
| 113 </div> | 113 </div> |
| 114 </div> | 114 </div> |
| 115 <div id="console"></div> | 115 <div id="console"></div> |
| 116 <script src="../../../../fast/js/resources/js-test-pre.js"></script> | 116 <script src="../js/resources/js-test-pre.js"></script> |
| 117 <script> | 117 <script> |
| 118 description('Check pan scroll by click mouse'); | 118 description('Check pan scroll by click mouse'); |
| 119 setUpTest(); | 119 setUpTest(); |
| 120 </script> | 120 </script> |
| 121 <script src="../../../../fast/js/resources/js-test-post.js"></script> | 121 <script src="../js/resources/js-test-post.js"></script> |
| 122 </body> | 122 </body> |
| 123 </html> | 123 </html> |
| OLD | NEW |