https://github.com/web-platform-tests/wpt
Raw File
Tip revision: feb7605d5a63e27fccc1b7684b7a5f8f21bc0cf3 authored by James Graham on 24 April 2014, 11:15:33 UTC
Stop using w3c-test.org for progress-events test
Tip revision: feb7605
pattern-array-extra-manual.html
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml' lang='en'>
  <head>
    <meta charset='utf-8'/>
    <title>Vibration API: test a pattern array parameter to vibrate() with an extra (even) item</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, interact'/>
    <meta name='assert' content='If the length of pattern is even, then remove the last entry in pattern.'/>
    <!--
      When you review this test, please add
      <link rel='reviewer' title='Your Name' href='mailto:your-email-address'/>
    -->
    <link rel='stylesheet' href='/resources/testharness.css' media='all'/>
  </head>
  <body>
    <h1>Description</h1>
    <p>
      After hitting the button below, your device must vibrate three times for one second, separated
      by one second intervals.
    </p>
    <button id='vib'>Vibrate!</button>
    <div id='log'></div>
    <script src='/resources/testharness.js'></script>
    <script src='/resources/testharnessreport.js'></script>
    <script src='/common/vendor-prefix.js' data-prefixed-objects='[{"ancestors":["navigator"], "name":"vibrate"}]'></script>
    <script>
      if (undefined !== navigator.vibrate) {
          document.getElementById("vib").onclick = function () {
              navigator.vibrate([1000, 1000, 1000, 1000, 1000, 1000]);
          };
      }
    </script>
  </body>
</html>
back to top