recognize links as a text browser

This commit is contained in:
zzz
2011-03-19 16:40:10 +00:00
parent f96342d33a
commit 34d951aa6b
2 changed files with 4 additions and 2 deletions

View File

@ -70,6 +70,7 @@ public class CSSHelper extends HelperBase {
*/
public boolean allowIFrame(String ua) {
return ua == null || !(ua.startsWith("Lynx") || ua.startsWith("w3m") ||
ua.startsWith("ELinks") || ua.startsWith("Dillo"));
ua.startsWith("ELinks") || ua.startsWith("Links") ||
ua.startsWith("Dillo"));
}
}