| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../../../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
| 5 <script src="../../../../../fast/forms/resources/common.js"></script> | 5 <script src="../../forms/resources/common.js"></script> |
| 6 <script src="../../../../../fast/forms/resources/common-wheel-event.js"></script
> | 6 <script src="../../forms/resources/common-wheel-event.js"></script> |
| 7 <script src="../../../../../fast/forms/resources/picker-common.js"></script> | 7 <script src="../../forms/resources/picker-common.js"></script> |
| 8 <script src="resources/suggestion-picker-common.js"></script> | 8 <script src="resources/suggestion-picker-common.js"></script> |
| 9 </head> | 9 </head> |
| 10 <body style="background-color: #bbbbbb;"> | 10 <body style="background-color: #bbbbbb;"> |
| 11 <p id="description"></p> | 11 <p id="description"></p> |
| 12 <div id="console"></div> | 12 <div id="console"></div> |
| 13 <input type=time id=time value="01:00" list=suggestions> | 13 <input type=time id=time value="01:00" list=suggestions> |
| 14 <datalist id=suggestions> | 14 <datalist id=suggestions> |
| 15 <option label="Now">01:01</option> | 15 <option label="Now">01:01</option> |
| 16 <option>01:02</option> | 16 <option>01:02</option> |
| 17 <option>01:03</option> | 17 <option>01:03</option> |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 eventSender.mouseDown(); | 111 eventSender.mouseDown(); |
| 112 eventSender.mouseMoveTo(scrollbarCenterX, suggestionListOffset[1] + suggesti
onList.offsetHeight); | 112 eventSender.mouseMoveTo(scrollbarCenterX, suggestionListOffset[1] + suggesti
onList.offsetHeight); |
| 113 eventSender.mouseUp(); | 113 eventSender.mouseUp(); |
| 114 scrollTopAfterWheelEvent = suggestionList.scrollTop; | 114 scrollTopAfterWheelEvent = suggestionList.scrollTop; |
| 115 shouldBeTrue('scrollTopBeforeWheelEvent < scrollTopAfterWheelEvent'); | 115 shouldBeTrue('scrollTopBeforeWheelEvent < scrollTopAfterWheelEvent'); |
| 116 | 116 |
| 117 finishJSTest(); | 117 finishJSTest(); |
| 118 } | 118 } |
| 119 | 119 |
| 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 |