The Firefox column is based on Firefox 12. The current version (Firefox 14) adds support for the FullScreen API, and Firefox 15 beta has support for remote debugging. getUserMedia is also coming soon.
I appreciate getting support information out there but don't take "supported" to mean "always works as expected". The primary example here is position fixed support which is _extremely_ broken in Android 3.1-4.0 on orientation change.
I agree - lists like these don't really have value if you're doing serious mobile web development. A few more examples of broken and inconsistent implementations:
• Viewport - this meta tag isn't supported on HTC phones, so your slick CSS media queries will expose a terrible UI in some cases.
• Websockets - the specification was changed after vendors implemented it, so you have to support multiple authentication schemes on the server side.
• Video - every vendor has their own take on how the controls should look, and certain vendors (I'm looking at you, iOS) disable or override the w3c default specification, so you have to sniff user agents to make a decent custom control. That's not to mention the difficulty of supporting all the various formats.
What adds to the pain is that the browser vendors don't always do a great job of keeping their APIs current, so you have to play the trial-and-error game to tease out the reasons you're having trouble - a game that is exceptionally difficult when the problem only occurs on the mobile device itself.
Android 'supports' CSS transforms, but a bug in Android 2.2+ (works fine in 1.9) means that you can't apply more than one simultaneous transition to a single element at a time (I don't know if this has been fixed in more recent versions, but it's still a big backwards compatibility issue).
iOS MobileSafari supports 'multimedia' (and is listed as such), but it's not until iOS 6 lands that we're getting proper Web Audio API support to actually provide a non-hacky way of playing sound for uses like games that require precise timing.
A binary yes/no really doesn't encapsulate the subtlety and complexity of mobile feature support.
(Disclosure: I'm a mobile Firefox developer.)