Does webkit-backface-visibility cause a memory leak?

I am working on a jQuery plugin and have discovered some strange problems: -webkit-backface-visibility:hidden .

My goal is to clone the HTML elements and then completely remove them from the HTML.

If I have -webkit-backface-visibility:hidden for these elements, Chrome still saves some nodes in memory (check elements> timeline> write memory> see nodes).

Jsfiddle without demonstrating backface properties (works fine) vs Jsfiddle without demonstrating backface properties

Regarding the demos: click the Clone button to duplicate the first five elements, and then click the Delete button to remove clones from the scene.

thanks

+6
source share
1 answer

This is just a small bug in Chrome. Until a bug fix appears, I would suggest using a different browser. I tested it in Safari and it works great. Good luck

0
source

All Articles