Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/vibration/vibration-patterns.html |
| diff --git a/third_party/WebKit/LayoutTests/vibration/vibration-patterns.html b/third_party/WebKit/LayoutTests/vibration/vibration-patterns.html |
| index ca254ea8a17ca655f852b45b6328d74ec9848224..ae07fed358ef69ffab47d826865059c3c47bc506 100644 |
| --- a/third_party/WebKit/LayoutTests/vibration/vibration-patterns.html |
| +++ b/third_party/WebKit/LayoutTests/vibration/vibration-patterns.html |
| @@ -1,12 +1,19 @@ |
| <html> |
| <head> |
| <script src="../resources/js-test.js"></script> |
| +<script src="../resources/user-gesture-utils.js"></script> |
| <script src="vibration-utils.js"></script> |
| </head> |
| <body> |
| +<h4 id="test"></h4> |
| <script> |
| description('Tests for how patterns are handled in the Vibration API.'); |
| +// Simulates a user click for vibrate to be allowed. |
| +// See: https://www.chromestatus.com/feature/5644273861001216. |
|
mustaq
2017/04/13 19:05:04
The chromestatus links here seem redundant because
binlu
2017/04/13 19:55:27
Will remove them shortly.
binlu
2017/04/18 15:48:29
Done.
|
| +var element = document.getElementById("test"); |
| +simulateUserClick(element.offsetLeft + 2, element.offsetTop + 2); |
| + |
| // A trailing pause is discarded from a pattern i.e. patterns of even |
| // non-zero length are truncated by 1. |
| shouldBeTrue("navigator.vibrate(newPattern(1, 4))"); |