This started happening sometime yesterday while I was trying the Places Autocomplete JS. You can reproduce the problem on the example:
http://code.google.com/apis/maps/documentation/javascript/examples/places-autocomplete.html 1. Insert a div as the first element in the body 2. Give it a big height ("1000px" works) 3. Scroll the window to the Autocomplete input 4. Type something to bring up Autocomplete and check out where it is rendered - Autocomplete popup isn't positioned below the input (it looks like it is at the input - the current window.scrollY) JS to do steps 1 - 3 and focus the input: var d = document.body.insertBefore(document.createElement("div"), document.getElementsByTagName("div")[0]); d.style.height = "1000px"; window.scroll(0, 1000); document.getElementsByTagName("input")[0].focus(); -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/Qgbdt_4nQEwJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
