Probably I’m being stupid and overlooking something, but I am having a bizarre issue that only occurs in Chrome (12.0.7, but maybe other versions as well). Check out this site:
On the right side, you will notice a community update panel. This is how it looks in any major browser except Chrome:

And here is how it renders in Chrome:

It renders twisties? When you click on one, it expands the row. Clicking again collapses the row. Nowhere in my code do I have any markup to implement such behavior. Is this some kind of special behavior because I am using figure tags? I tested this site in Chrome before and it was no issue then, so it could be a recent bug.
The
detailselement is supposed to exhibit the behaviour you’re experiencing in Chrome.The spec:
Some version of Chrome 12 (dev channel) added proper support for opening and closing the
detailselement.According to http://caniuse.com/#search=details, Chrome is the only browser to support this at the moment.
To fix this, I think you should replace the
detailselement with some other element.