vote up 2 vote down star

What are the most common browser compatibility issues across the major desktop browsers?

No dups please. Up-vote problems you've run into. I'm hoping for the list to self-sort. "IE sux" is not a pitfall, but a call for down-vote.

[Edit] Yes, I know it's a poll - I'm not posting answers in this to gather points - I'm actually interested in knowing what people typically run into.

flag

80% accept rate
I believe with the advent of new Javascript frameworks like JQuery, this issue is not a big factor anymore.. – Gulzar Sep 30 '08 at 17:42
Gulzar - I would agree with regards to the JavaScript aspect of the question, but not the HTML, CSS part. – Hafthor Sep 30 '08 at 17:44
Halftor: I'd encourage you to reformulate your question such that is is answerable with one answer. – Florian Bösch Sep 30 '08 at 17:56
Florian: How about I take down the question? Do you know of a community list like I've described? – Hafthor Sep 30 '08 at 18:03
Halfthor: I don't know any. Btw. I take exception at polls not so much because a lot of them are about poll whoring, but because polling is simply not what stackoverflow is about. – Florian Bösch Sep 30 '08 at 19:33

9 Answers

vote up 1 vote down check

Quirksmode has a comprehensive list of a lot of differencies requiring attention !-)

-- but he is, like most other sites and bloggers on the net, focused in his way, and that results in some minor or major bugs and inconsistencies ...

link|flag
QM it is a comprehensive list, but tough to wade through and doesn't weigh problems by how likely you are to run into them. Thx. – Hafthor Oct 2 '08 at 19:14
@Hafthor: You're quite right ... – roenving Oct 2 '08 at 21:55
vote up 0 vote down

The most common one I can think of -- and it's been a problem for me twice this week alone -- is IE6 and the box model bug. Look it up!

Specifically, the problem I'm thinking of is when you have floated DIVs which the developer thinks all fit within a wrapper DIV, but they don't in IE6 because they're slightly bigger.

So rather than three columns, you end up with two, and your third is down at the bottom of the screen somewhere -- you want:

   +-------------------------------+
   |+------+ +-----------+ +------+|
   ||      | |           | |      ||
   || foo  | |   bar     | | baz  ||
   ||      | |           | |      ||
   ||      | |           | |      ||
   |+------+ +-----------+ +------+|
   +-------------------------------+

but you get:

   +-------------------------------+
   |+--------+ +------------+      |
   ||        | |            |      |
   ||  foo   | |    bar     |      |
   ||        | |            |      |
   ||        | |            |      |
   |+--------+ +------------+      |
   |+------+                       |
   ||      |                       |
   ||      |                       |
   || baz  |                       |
   ||      |                       |
   ||      |                       |
   |+------+                       |
   +-------------------------------+
link|flag
vote up 0 vote down

Every fixed width, centered site I've created -- i.e. using 'margin:0 auto' on some containing div to center everything up -- fails to work on IE6 until I test it and apply a 'hack'. This gets me every time.

link|flag
vote up 0 vote down

When performing an XMLHttpRequest and executing a function 'onreadystatechange' the XMLHttpRequest.responseText property contains the data loaded at that point in Firefox, but not in IE (and maybe Safari).

This prevents the capture of partial data in those browsers for use in displaying an execution progress meter.

link|flag
vote up 1 vote down

I've found that IE 6 has pretty small limits to the allowed stack depth.

At one point I was using a nice recursive function to get the position of an element in the document:

function getOffsetTop (element) {
    var offset = 0;

    if (element.offsetTop)
        offset = offset + element.offsetTop;

    if (element.offsetParent)
        offset = offset + getOffsetTop(element.offsetParent);   

    return offset;
}

Unfortunately when calling this method for elements in a very deep node hierarchy, IE complains of exceeding the maximum stack size (I forget the exact error message). To get around this I needed to use an iterative approach to keep the stack size small:

function getOffsetTop (element) {
    var offset = 0;

    if (element.offsetTop)
        offset = offset + element.offsetTop;

    var parent = element.offsetParent;
    while (parent) {
        if (parent.offsetTop)
            offset = offset + parent.offsetTop;
        parent = parent.offsetParent;
    }

    return offset;
}
link|flag
vote up 6 vote down

Transparent PNGs in Internet Explorer 6, especially because the common, JavaScript-less workaround of using the AlphaImageLoader can have the side effect of locking up IE6.

link|flag
pffft, who really uses transparent PNGs anyway? ;) – tloach Sep 30 '08 at 18:41
I use png24's often and support them in IE6, but i've never had that problem. – Justin Johnson Sep 18 at 4:07
On the internet or an internal site? I assume that our combination of many larger image files (~900k in total) on an internal network could have caused the problem as the download is faster than over the internet. – Michael Stum Sep 18 at 23:29
vote up 4 vote down

CSS - largely sorted out in the modern browsers, but still an issue - particularly as pertains to layout.

Note that this is not critical - but it is a compatibility issue I almost always end up coming back to when designing a site.

link|flag
vote up 3 vote down

caching, and previous page hashes.

link|flag
Can you elaborate? Which browsers didn't behave as expected and how? – Hafthor Sep 30 '08 at 18:06
vote up 2 vote down

Memory management can be an issue - different garbage collectors choke on different types of circular references, although firefox is getting pretty good at cleaning up complex objects properly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.