From c257a406a30509fdc42c37ea6de639c6e229ad33 Mon Sep 17 00:00:00 2001 From: Marco Castelluccio Date: Sun, 3 May 2020 16:13:49 +0000 Subject: [PATCH] Bug 1631286 [wpt PR 23098] - "ownership" of a SpeechSynthesisUtterance is not defined by the specification, a=testonly Automatic update from web-platform-tests The specification does not define the concept of or algorithm for "ownership" of a SpeechSynthesisUtterance (#23098) Fixes https://github.com/web-platform-tests/wpt/issues/23097 -- wpt-commits: a12b280bc38ae366807ad9324e1a6fc3d8b5e82e wpt-pr: 23098 UltraBlame original commit: e797ade7daf3bdd783f829c36190e6d13f6d6438 --- .../SpeechSynthesis-speak-ownership.html | 258 ------------------ 1 file changed, 258 deletions(-) delete mode 100644 testing/web-platform/tests/speech-api/SpeechSynthesis-speak-ownership.html diff --git a/testing/web-platform/tests/speech-api/SpeechSynthesis-speak-ownership.html b/testing/web-platform/tests/speech-api/SpeechSynthesis-speak-ownership.html deleted file mode 100644 index ac50b322cf2e2..0000000000000 --- a/testing/web-platform/tests/speech-api/SpeechSynthesis-speak-ownership.html +++ /dev/null @@ -1,258 +0,0 @@ -< -! -doctype -html -> -< -script -src -= -" -/ -resources -/ -testharness -. -js -" -> -< -/ -script -> -< -script -src -= -" -/ -resources -/ -testharnessreport -. -js -" -> -< -/ -script -> -< -script -src -= -" -/ -resources -/ -testdriver -. -js -" -> -< -/ -script -> -< -script -src -= -" -/ -resources -/ -testdriver -- -vendor -. -js -" -> -< -/ -script -> -< -iframe -> -< -/ -iframe -> -< -script -> -/ -/ -using -an -utterance -for -different -SpeechSynthesis -instances -should -throw -async_test -( -t -= -> -{ -test_driver -. -bless -( -' -speechSynthesis -. -speak -' -t -. -step_func_done -( -( -) -= -> -{ -/ -/ -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 -let -threw -= -false -; -try -{ -iframe -. -contentWindow -. -speechSynthesis -. -speak -( -utter -) -; -} -catch -( -e -) -{ -threw -= -true -; -} -assert_true -( -threw -) -; -} -) -) -; -} -' -Using -the -same -SpeechSynthesisUtterance -with -two -SpeechSynthesis -instances -' -) -; -< -/ -script ->