Check boxes and radio buttons are missing in Google chrome

Check boxes and radio buttons are not visible in Google chrome browser ?

Here is the quick fix

Add this to css

input[type=”checkbox”]{
-webkit-appearance: checkbox;
}

input[type=”radio”]{

-webkit-appearance: radio;

}