#13350 closed task (fixed)
remove FF3 code at some point
Reported by: | Douglas Hays | Owned by: | Eugene Lazutkin |
---|---|---|---|
Priority: | high | Milestone: | 1.8 |
Component: | HTML | Version: | 1.7.0b1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
dom-geometry.js contains
}else if(has("ff") == 3){ // In FF3 you have to subtract the document element margins. // Fixed in FF3.5 though. var cs = style.getComputedStyle(dh), px = style.toPixelValue; ret.x -= px(dh, cs.marginLeft) + px(dh, cs.borderLeftWidth); ret.y -= px(dh, cs.marginTop) + px(dh, cs.borderTopWidth);
which should be removed at some point in the near future.
Change History (9)
comment:1 Changed 11 years ago by
Component: | General → HTML |
---|
comment:2 Changed 11 years ago by
Owner: | changed from James Burke to Eugene Lazutkin |
---|
comment:3 Changed 11 years ago by
Status: | new → assigned |
---|
comment:4 Changed 11 years ago by
According to http://en.wikipedia.org/wiki/Firefox, FF3.6 hasn't reached EOL yet, although probably soon, see http://www.macworld.com.au/news/mozilla-mulls-firefox-3-6-retirement-too-32601/.
comment:5 Changed 11 years ago by
But this is 3.0 code. James wanted to leave it in for a while back in 1.5.
comment:6 Changed 11 years ago by
Oops, ignore my above comment then. I think it's fine to remove it now (of course, I said the same thing before 1.5 was released, but there's an even better argument now).
comment:7 Changed 10 years ago by
Apparently all Firefox 3.x versions are retired now, even the venerable 3.6, which is not affected by the code in question. I will remove the code.
comment:9 Changed 10 years ago by
Milestone: | tbd → 1.8 |
---|
When FF3 code should be removed?