OLD | NEW |
1 Tests that bad input throws exceptions in the Vibration API. | 1 Tests that bad input throws exceptions in the Vibration API. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 PASS navigator.vibrate(); threw exception TypeError: Failed to execute 'vibrate'
on 'Navigator': 1 argument required, but only 0 present.. | 6 PASS navigator.vibrate() threw exception TypeError: Failed to execute 'vibrate'
on 'Navigator': 1 argument required, but only 0 present.. |
7 PASS navigator.vibrate(1, 2); threw exception TypeError: Failed to execute 'vibr
ate' on 'Navigator': 1 argument required, but only 2 present.. | 7 PASS navigator.vibrate(1, 2) is true |
8 PASS navigator.vibrate([1], [2]); threw exception TypeError: Failed to execute '
vibrate' on 'Navigator': 1 argument required, but only 2 present.. | 8 PASS navigator.vibrate([1], [2]) is true |
9 PASS successfullyParsed is true | 9 PASS successfullyParsed is true |
10 | 10 |
11 TEST COMPLETE | 11 TEST COMPLETE |
12 | 12 |
OLD | NEW |