// HACK(danilatos): I had to patch MenuBar to make this method public.
// Getting more and more tempting to write own menu class...
// Calling this makes the first item in the menu selected by default,
// so just pressing enter will choose it.
menu.moveSelectionDown();
ContentElement element = suggestable.getSuggestionElement();
popupAnchor = element.getImplNodelet();
// If savedSelection is null, it should be the first time we are showing a popup (not moving
// around). So, we save the selection because it becomes null later when we lose focus,
// at least in IE.
if (savedSelection == null) {
savedSelection = selectionHelper.getSelectionRange();