Bug 986752 - CSS :active states get stuck with multiple on-screen touches. r=botond

This commit is contained in:
Vivien Nicolas 2014-04-09 14:47:30 +02:00
Родитель 065e1fb950
Коммит 9352d16730
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -139,7 +139,8 @@ const ContentPanning = {
onTouchStart: function cp_onTouchStart(evt) {
let screenX, screenY;
if (this.watchedEventsType == 'touch') {
if ('primaryPointerId' in this) {
if ('primaryPointerId' in this || evt.touches.length >= 2) {
this._resetActive();
return;
}