fix(firefox): keyboard tests (#4082)

This commit is contained in:
Joel Einbinder
2019-02-27 15:13:17 -08:00
committed by Andrey Lushnikov
parent e8a49633d9
commit a6d8ecce6f
5 changed files with 38 additions and 17 deletions

View File

@@ -24,8 +24,6 @@
m.push('Alt')
if (event.ctrlKey)
m.push('Control');
if (event.metaKey)
m.push('Meta')
if (event.shiftKey)
m.push('Shift')
return '[' + m.join(' ') + ']';