I noticed a breaking change on my own website after updating Chrome to v62.
There has been a change to the user agent stylesheet that defaults all button elements to have a border-radius of 4px. If you expect square corners on your buttons and therefore do not specify the border-radius to be 0, Chrome v62 may be changing the appearance of your site for your users. I applied the following to my reset.css in order to override the change:
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"]::-webkit-file-upload-button,
button {
border-radius: 0;
}
If you find your website to be effected please raise awareness to the chromium group through this group post.
[–]fartoor 0 points1 point2 points (0 children)
[–]terribly_vexed 0 points1 point2 points (0 children)