blob: b2220b9f4864259b6435d7f42bb13d3c286935ee [file] [log] [blame]
<html>
<head>
<script src="../js/resources/js-test-pre.js"></script>
</head>
<body>
<script>
description('Test for the Vibration API.');
shouldBe("navigator.vibrate(0);", "undefined");
shouldBe("navigator.vibrate([]);", "undefined");
shouldBe("navigator.vibrate(1000);", "undefined");
shouldBe("navigator.vibrate([1000, 300, 500]);", "undefined");
shouldBe("navigator.vibrate(4294967295);", "undefined");
shouldThrow("navigator.vibrate();");
</script>
<script src="../js/resources/js-test-post.js"></script>
</body>
</html>