Changeset 2133 for FCKeditor.Java/trunk/java-core/src/test/java/net/fckeditor/tool/CompatibilityTest.java
- Timestamp:
- 2008-06-25 09:17:42 (7 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/trunk/java-core/src/test/java/net/fckeditor/tool/CompatibilityTest.java
r1553 r2133 86 86 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")); 87 87 } 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 } 88 93 89 94 @Test … … 111 116 assertTrue(Compatibility.check("Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 6.0; en) Opera 9.50")); 112 117 } 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 } 113 123 }