Index: LayoutTests/fast/dom/navigator-vibration.html |
diff --git a/LayoutTests/fast/dom/navigator-vibration.html b/LayoutTests/fast/dom/navigator-vibration.html |
deleted file mode 100644 |
index 175f75c13dacfd8a510bcdd9807e3a3beea1a8db..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/navigator-vibration.html |
+++ /dev/null |
@@ -1,33 +0,0 @@ |
-<html> |
-<head> |
-<script src="../js/resources/js-test-pre.js"></script> |
-</head> |
-<body> |
-<script> |
-description('Test for the Vibration API.'); |
- |
-shouldBeTrue("navigator.vibrate(0);"); |
-shouldBeTrue("navigator.vibrate([]);"); |
-shouldBeTrue("navigator.vibrate(1);"); |
-shouldBeTrue("navigator.vibrate([1, 2]);"); |
-shouldBeTrue("navigator.vibrate([1, 2, 3]);"); |
- |
-// Max pattern entry value. |
-shouldBeTrue("navigator.vibrate(10000);"); |
- |
-// Larger than max but the value is truncated and execution proceeds. |
-shouldBeTrue("navigator.vibrate(10001);"); |
- |
-shouldBeTrue("navigator.vibrate(-1);"); |
- |
-// Maximum pattern length. |
-shouldBeTrue("var p = []; for (var i = 0; i < 99; i++) p[i] = 1; navigator.vibrate(p);"); |
- |
-// Larger than max but the pattern is truncated and execution proceeds. |
-shouldBeTrue("var p = []; for (var i = 0; i < 100; i++) p[i] = 1; navigator.vibrate(p);"); |
-shouldThrow("navigator.vibrate();"); |
-shouldThrow("navigator.vibrate([1], [2]);"); |
-</script> |
-<script src="../js/resources/js-test-post.js"></script> |
-</body> |
-</html> |