Show
Ignore:
Timestamp:
2008-06-25 09:17:42 (7 months ago)
Author:
th-schwarz
Message:

- solved ticked #2295
- cleaned up compatibility code

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor.Java/trunk/java-core/src/test/java/net/fckeditor/tool/CompatibilityTest.java

    r1553 r2133  
    8686            assertTrue(Compatibility.check("Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12")); 
    8787    } 
     88         
     89        @Test 
     90        public void testFirefox30Linux() throws Exception { 
     91                assertTrue(Compatibility.check("Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9pre) Gecko/2008040318 Firefox/3.0pre (Swiftfox)")); 
     92        } 
    8893 
    8994        @Test 
     
    111116                assertTrue(Compatibility.check("Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; en) Opera 9.50"));    
    112117    } 
     118         
     119        @Test 
     120        public void testEpaphany220Linux() throws Exception { 
     121                assertTrue(Compatibility.check("Mozilla/5.0 (X11; U; Linux i686; en; rv:1.9b3) Gecko Epiphany/2.20")); 
     122        } 
    113123}