Two of the Acid2 bugs in Opera have somewhat interesting histories. First, there's a bug with the handling of HTML comments. According to the W3C HTML 4.01 spec., an HTML comment can contain multiple comments inside each markup declaration delimiter pair. We used to handle comments according to the HTML 4.01 spec., but found problems on a couple of pages. Since Internet Explorer doesn't treat HTML comments according to the spec., authors didn't see the problem. After unsuccessfully attempting to get the pages fixed, we decided to break the spec. and treat everything between markup declaration delimiters as comments like Internet Explorer. This causes the word "ERROR" to appear in row 13 of the Acid2 test.
We had similar problems with :hover rules on some Web sites. Many authors didn't specify classes, IDs, and/or elements along with the :hover pseudo-class in selectors (thus triggering the universal selector). Internet Explorer only supports the :hover pseudo-class for A elements, so most page authors didn't know that a problem existed. Again, after unsuccessfully attempting to get the pages fixed, we decided to break the spec. and prevent the :hover pseudo-class from working with the universal selector. This causes the nose in rows 6 to 9 to turn red when hovered rather than blue.