Caveats: I suck at accessibility, so I am probably wrong on a lot of things.
Chrome 32 on Android removes the 300ms delay on touch events for responsive sites. This disables double-tap zoom, leaving pinch to zoom the only way to zoom content. This is an accessibility concern, as for some users double tap zoom may have been the only way they were able to zoom web pages.
For unimpaired users, a 300ms delay on link clicks/interactions with sites provides no benefit, and creates a sluggish UI. Many website owners, aware of the impacts of slow UIs, and trying to compete with native apps, used tools like FastClick to override this behaviour by removing the delay. Removing the delay at the browser level negates the need for tools like fastclick, makes chrome feel faster (competitive win for chrome I guess), and improves performance overall as fastclick has scroll performance implications.
A portion of users, who find pinch-to-zoom difficult, will now potentially be left out of the web. While businesses might not be bothered in the short term, this is clearly not a long term good for the web/society.
Chrome 30 on android has an option to force allow zooming on all sites as an accessibility option. If this still exists in Chrome 32, I'd argue this may actually be a step forewards for accessibility. Why?:
- Currently, "dumb" website owners use fast click to disable the 300ms delay: which even with "force allow zooming" enabled breaks double tap zoom.
- As the 300ms delay goes away, website owners can remove fast click, as it will be redundant, which, assuming chrome keeps "force allow zooming" will mean that double tap zoom works again.
Now, the above means that impaired users have to enable an accessibility setting to be able to use their browser, which is a bummer, but at least it puts them back in control if we get rid of hacks like fast click.
I guess what I'm hoping for is a better solution - a way to preserve double-tap without the delay.
It's also a little black and white to suggest I'm for the old ways and you're for the new. I want to see the web move forward, but the web is the most inclusive tool we've created - and keeping it that way is about being smarter about how we solve this kind of issue.
I haven't had a close look at Tappy by Filament Group - https://github.com/filamentgroup/tappy - but I wonder if it also breaks double-tap zoom... it looks more involved, but I would always rather include a small lib to solve these issues while the browsers work out a better way (and with that in mind, maybe the competitive edge you identified for Chrome might drive other browser vendors to find their own, better way around this).