public boolean getDom2()

in velocity-tools-view/src/main/java/org/apache/velocity/tools/view/BrowserToolDeprecatedMethods.java [586:594]


    public boolean getDom2()
    {
        int maj = getBrowser() != null ? getBrowser().getMajorVersion() : 0;
        return (isMSIE() && maj >= 6) ||
                (isMozilla() && maj >= 5.0) ||
                (isOpera() && maj >= 7) ||
                isFirefox() ||
                isChrome();
    }