Index: LayoutTests/fast/forms/resources/common.js |
=================================================================== |
--- LayoutTests/fast/forms/resources/common.js (revision 105691) |
+++ LayoutTests/fast/forms/resources/common.js (working copy) |
@@ -22,3 +22,12 @@ |
pos.y = element.offsetTop + element.offsetHeight / 2; |
return pos; |
} |
+ |
+function mouseMoveToIndexInListbox(index, listboxId) { |
+ var listbox = document.getElementById(listboxId); |
+ var itemHeight = Math.floor(listbox.offsetHeight / listbox.size); |
+ var border = 1; |
+ var y = border + index * itemHeight; |
+ if (window.eventSender) |
+ eventSender.mouseMoveTo(listbox.offsetLeft + border, listbox.offsetTop + y - window.pageYOffset); |
+} |