Reputation: 15365
I saw that FireBug can track CSS changes with its plugin FireDiff, but I have a CSS bug that only occurs on Google Chrome. So I would like to know if something similar exists for this browser.
Or maybe a JS layer that would intercept any .style
change...
Upvotes: 1
Views: 1398
Reputation: 593
You should take advantage of the Breakpoints on DOM Mutation Events in Google Chrome.
The Google I/O 2011 Video on Chrome Dev Tools Reloaded goes into some depth.
Upvotes: 1