summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/vibration/api-is-present.html
blob: 70aa4047e11b9708aa300c878164cde0da811ec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
  <head>
    <meta charset='utf-8'/>
    <title>Vibration API: test that the vibrate() method is present (with or without vendor prefix)</title>
    <link rel='author' title='Robin Berjon' href='mailto:robin@berjon.com'/>
    <link rel='help' href='http://www.w3.org/TR/vibration/#methods'/>
    <meta name='flags' content='dom'/>
    <meta name='assert' content='Check that the vibrate() method is present.'/>
  </head>
  <body>
    <h1>Description</h1>
    <p>
      This test checks for the presence of the <code>vibrate()</code> method, taking
      vendor prefixes into account.
    </p>
    <div id='log'></div>
    <script src='/resources/testharness.js'></script>
    <script src='/resources/testharnessreport.js'></script>
    <script>
      test(function () {
          assert_not_equals(undefined, navigator.vibrate, "navigator.vibrate exists");
      }, "vibrate() is present on navigator");
    </script>
  </body>
</html>