Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(951)

Side by Side Diff: LayoutTests/vibration/vibration-patterns.html

Issue 40443002: Add Vibration API layout tests that inspect internal state. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Address review comments. Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="../fast/js/resources/js-test-pre.js"></script>
4 <script src="vibration-utils.js"></script>
5 </head>
6 <body>
7 <script>
8 description('Tests for how patterns are handled in the Vibration API.');
9
10 // A trailing pause is discarded from a pattern i.e. patterns of even
11 // non-zero length are truncated by 1.
12 shouldBeTrue("navigator.vibrate(newPattern(1, 4))");
13 shouldBeTrue("areArraysEqual(internals.pendingVibrationPattern(document), newPat tern(1, 3))");
14 shouldBeTrue("internals.isVibrating(document)");
15 stopVibration();
16
17 // Maximum pattern length.
18 shouldBeTrue("navigator.vibrate(newPattern(1, 99))");
19 shouldBeTrue("areArraysEqual(internals.pendingVibrationPattern(document), newPat tern(1, 99))");
20 shouldBeTrue("internals.isVibrating(document)");
21 stopVibration();
22
23 // The pattern is longer than supported. It is truncated and execution proceeds.
24 shouldBeTrue("navigator.vibrate(newPattern(1, 200))");
25 shouldBeTrue("areArraysEqual(internals.pendingVibrationPattern(document), newPat tern(1, 99))");
26 shouldBeTrue("internals.isVibrating(document)");
27 stopVibration();
28
29 </script>
30 <script src="../fast/js/resources/js-test-post.js"></script>
31 </body>
32 </html>
OLDNEW
« no previous file with comments | « LayoutTests/vibration/vibration-exceptions-expected.txt ('k') | LayoutTests/vibration/vibration-patterns-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698