I have a situation in which I did web development (Wicket running on Tomcat) on Firefox 3.6.3, and now need to support Firefox 2.0 as well. Do you have any tips on what I should expect to break or where I should focus my testing?
            Asked
            
        
        
            Active
            
        
            Viewed 82 times
        
    1
            
            
        - 
                    1Are you building a webpage or a plugin ? – Michael B. Jul 07 '10 at 20:54
 - 
                    @Michael: webpage. I clarified my question. – Alex B Jul 07 '10 at 22:13
 
1 Answers
2
            Here's a few discrepancies to test between Firefox 2 and later versions:
- Use 
white-space: -moz-pre-wrapfor Firefox 2 to emulatewhite-space: pre-wrapin Firefox 3+ - Text in Firefox 2 Mac with opacity set has reduced contrast
 - Use 
display:-moz-inline-boxin a separate declaration to trigger the Firefox 2 experimental layout which approximatesdisplay:inline-blockfor a particular element. - Add a fixed width div nested in the wrapper to address the limitations of 
-moz-inline-boxin Firefox 2. 
        Paul Sweatte
        
- 24,148
 - 7
 - 127
 - 265