background-attachment:fixed ne fonctionne pas sous chrome

Je suis en train d'élaborer un site web dans lequel j'ai utilisé le background-attachment:fixed
de la propriété. Il fonctionne dans Firefox, mais l'image n'est pas fixe. Dans google Chrome, c'est se comporter de la normale. Voici le code:

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>