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