blob: ff896577f32ef969f892d03fac09e757d308af4e [file] [log] [blame]
# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from fuzzy_check import FuzzyCheck
from validators import *
# originally generated gestures:
#
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
for rawitem in raw['entries']:
if rawitem['type'] == 'gesture' and rawitem['gestureType'] == 'scroll':
dy = rawitem['dy']
if dy > 0:
return False, 'Has reverse scroll'
return True, 'Success'