https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4d07d43a20637109042a6384009306dcd3301bd5 authored by Kris Maglione on 11 April 2018, 08:57:58 UTC
Don't reparse stylesheets when assigning empty string to empty element.
Tip revision: 4d07d43
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