That's not default behavior. Do you have an extension that causes this to happen? – Boris ZbarskyApr 30 '11 at 21:48
You're right. Looking that the site, they use JavaScript to focus on the text_area in question. Without the call to focus, the text_area remains scrolled to the top, but with the focus call, it gets scrolled to the bottom. Firefox 4 is the only browser I've seen that exhibits this behavior. (Also, I disabled all extensions to ensure that wasn't the issue) – Gordon McCreightMay 1 '11 at 5:13
Ah, yes. With the focus() call you would get that behavior. See bugzilla.mozilla.org/show_bug.cgi?id=353539 for the reason Firefox 4 does that. It looks like webkit puts the caret at the beginning of the text on focus, not at the end. Opera has the same (buggy) behavior Firefox used to have: the caret goes at the end, but is not scrolled into view. – Boris ZbarskyMay 1 '11 at 17:38
Ah, yes. With the focus() call you would get that behavior. See http://bugzilla.mozilla.org/show_bug.cgi?id=353539 for the reason Firefox 4 does that. It looks like webkit puts the caret at the beginning of the text on focus, not at the end. Opera has the same (buggy) behavior Firefox used to have: the caret goes at the end, but is not scrolled into view
focus()call you would get that behavior. See bugzilla.mozilla.org/show_bug.cgi?id=353539 for the reason Firefox 4 does that. It looks like webkit puts the caret at the beginning of the text on focus, not at the end. Opera has the same (buggy) behavior Firefox used to have: the caret goes at the end, but is not scrolled into view. – Boris Zbarsky May 1 '11 at 17:38