IE's not so much ignoring as permanently accommodating... it always displays a vertical scrollbar whether needed or not (interestingly note this is not standard behavior for windows apps). To force the scrollbar to always be present in FF try fitting this kind of thing in somewhere:
HTML {
height: 100%;
}
BODY {
min-height: 101%;
}