https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 49cbe8a9470283ecfeaa05ae7c1b9e638dfff8bd authored by Chris Nardi on 19 March 2018, 18:15:09 UTC
Test both parsing orders
Tip revision: 49cbe8a
historical.html
<!doctype html>
<title>Historical Speech API features</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
[
  "webkitSpeechGrammar",
  "webkitSpeechGrammarList",
  "webkitSpeechRecognition",
  "webkitSpeechRecognitionError",
  "webkitSpeechRecognitionEvent",
].forEach(name => {
  test(function() {
    assert_false(name in window);
  }, name + " interface should not exist");
});
</script>
back to top