in velocity-tools-view/src/main/java/org/apache/velocity/tools/view/BrowserToolDeprecatedMethods.java [574:583]
public boolean getDom1()
{
int maj = getBrowser() != null ? getBrowser().getMajorVersion() : 0;
return (isMSIE() && getBrowser().getMajorVersion() >= 5) ||
isGecko() ||
(isSafari() && maj >= 2) ||
(isOpera() && maj >= 4) ||
(isKonqueror() && maj >= 2)
|| isChrome();
}