Today, I encountered a perplexing issue with my project. It was functioning perfectly yesterday, but today it seems to be malfunctioning. (Yes, I have checked previous versions on git.)
The problem at hand is that some divs that were previously hidden using
-webkit-backface-visibility: hidden;
have mysteriously appeared. To demonstrate this issue, I have created a fiddle:
In Chrome version 23.0.1271.64 m
, the div is visible (incorrect behavior), whereas in 25.0.1326.0 canary
, it remains hidden as expected.
Could you confirm whether this is a bug in Chrome or if there may be an error in how I am utilizing the CSS?
(It may be worth noting that I updated my GPU drivers from 12.8 to 12.10 today.)
Furthermore, the website demonstrating the effect I have been trying to replicate appears to function somewhat correctly in Chrome stable (aside from disregarding -webkit-perspective
and having choppy animations). In contrast, Chrome canary renders it smoothly and recognizes the perspective. This inconsistency has left me puzzled.