background-attachment: corrigido não funcionando em cromo

Estou desenvolvendo um site no qual usei obackground-attachment:fixed propriedade. Está funcionando bem no Firefox, mas a imagem não está corrigida. No Chrome, está se comportando normalmente. Aqui está o código:

CSS:

.AboutBg
{
    background-attachment: fixed;
    background-image: url("../Images/LandingPage/smart.jpg");
    background-position: 0 0;
    background-repeat: repeat;
    background-size: cover;
    height: 90%;
    position: absolute;
    width: 100%;
}

HTML:

<div class="AboutBg"></div>

questionAnswers(11)

yourAnswerToTheQuestion