A client of mine reported that they could not reliably click on a specific control on a page. When I investigated with Firebug I found a div with a control ID and an explicit visible style, and nothing else, hovering over that position. Added a field so I could paste the ID from Firebug and do a Xojo search and it turned out to be a WebTimer. I’ve confirmed that this happens in a new, empty web project as well.
I know WebTimer’s inherit Left/Top properties, but I didn’t think they actually generated client side divs much less divs with a non-zero size, visibility of true, and therefore the potential to sit over anything else.
For now changing the WebTimer’s Left/Top to -512 (minimum value the IDE lets me set) seems to work. But shouldn’t WebTimers…if they’re attached to divs…be invisible and/or off the page to begin with?