mirror of
https://github.com/servo/servo.git
synced 2025-07-11 17:33:47 +01:00
19 lines
511 B
HTML
19 lines
511 B
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>
|
|
[
|
|
"SpeechRecognitionError",
|
|
"webkitSpeechGrammar",
|
|
"webkitSpeechGrammarList",
|
|
"webkitSpeechRecognition",
|
|
"webkitSpeechRecognitionError",
|
|
"webkitSpeechRecognitionEvent",
|
|
].forEach(name => {
|
|
test(function() {
|
|
assert_false(name in window);
|
|
}, name + " interface should not exist");
|
|
});
|
|
</script>
|