Chrome Canary が e.originalEvent.touches を削除したかどうか知っている人はいますか? 次のスクリプトを Chrome Stable で実行すると 1 が返され、Chrome Canary ではエラーが返されます (Uncaught TypeError: Cannot read property 'length' of undefined)。
jQuery(document).on('touchstart', function(e){ console.log(e.originalEvent.touches.length); });
私は Windows でバージョン 29.0.1537.0 カナリアを使用しています。