https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 14571a699ae56859bc30a22946f563a8b48b80c4 authored by Manuel Rego Casasnovas on 21 March 2018, 13:42:37 UTC
[css-grid] Fix testing-utils.js
Tip revision: 14571a6
SpeechSynthesis-speak-ownership.html
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<iframe></iframe>
<script>
// using an utterance for different SpeechSynthesis instances should throw
test(t => {
  // the utterance is short to make the test faster
  const utter = new SpeechSynthesisUtterance('1');
  const iframe = document.querySelector('iframe');
  assert_not_equals(speechSynthesis, iframe.contentWindow.speechSynthesis);
  speechSynthesis.speak(utter);
  // the spec doesn't say what exception to throw:
  // https://github.com/w3c/speech-api/issues/8
  assert_throws(null, () => {
    iframe.contentWindow.speechSynthesis.speak(utter);
  });
}, 'Using the same SpeechSynthesisUtterance with two SpeechSynthesis instances');
</script>
back to top