Revision fee987632e670876c7468ccd695f41fe90911d6b authored by Manuel Rego Casasnovas on 05 April 2018, 07:04:59 UTC, committed by Manuel Rego Casasnovas on 05 April 2018, 07:04:59 UTC
The CSSWG resolved to make it explicit in the spec in issue w3c/csswg-drafts#2145.
The reason is that there's interop between all UAs regarding this.

These 2 tests were marked as optional "may" but they're not optional anymore.
1 parent 54f844c
Raw File
pattern-array-manual.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset='utf-8'/>
    <title>Vibration API: test a pattern array parameter to vibrate()</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'/>
  </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>
    <script>
      if (undefined !== navigator.vibrate) {
          document.getElementById("vib").onclick = function () {
              navigator.vibrate([1000, 1000, 1000, 1000, 1000]);
          };
      }
    </script>
  </body>
</html>
back to top