| 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=month id=month value="2012-12" list=suggestions> | 13 <input type=month id=month value="2012-12" list=suggestions> |
| 14 <datalist id=suggestions> | 14 <datalist id=suggestions> |
| 15 <option label="This Month">2012-01</option> | 15 <option label="This Month">2012-01</option> |
| 16 <option>2012-02</option> | 16 <option>2012-02</option> |
| 17 <option>2012-03</option> | 17 <option>2012-03</option> |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 eventSender.mouseDown(); | 135 eventSender.mouseDown(); |
| 136 eventSender.mouseMoveTo(scrollbarCenterX, suggestionListOffset[1] + suggesti
onList.offsetHeight); | 136 eventSender.mouseMoveTo(scrollbarCenterX, suggestionListOffset[1] + suggesti
onList.offsetHeight); |
| 137 eventSender.mouseUp(); | 137 eventSender.mouseUp(); |
| 138 scrollTopAfterWheelEvent = suggestionList.scrollTop; | 138 scrollTopAfterWheelEvent = suggestionList.scrollTop; |
| 139 shouldBeTrue('scrollTopBeforeWheelEvent < scrollTopAfterWheelEvent'); | 139 shouldBeTrue('scrollTopBeforeWheelEvent < scrollTopAfterWheelEvent'); |
| 140 | 140 |
| 141 finishJSTest(); | 141 finishJSTest(); |
| 142 } | 142 } |
| 143 | 143 |
| 144 </script> | 144 </script> |
| 145 <script src="../../../../../fast/js/resources/js-test-post.js"></script> | 145 <script src="../../js/resources/js-test-post.js"></script> |
| 146 </body> | 146 </body> |
| 147 </html> | 147 </html> |
| OLD | NEW |