Changeset 270868 in webkit
- Timestamp:
- Dec 15, 2020 3:04:22 PM (19 months ago)
- Location:
- trunk
- Files:
-
- 25 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/ios/audio-capture-expected.txt (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/ios/audio-capture.html (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/ios/restart-recognition-after-stop-expected.txt (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/ios/restart-recognition-after-stop.html (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/ios/start-recognition-then-stop-expected.txt (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/ios/start-recognition-then-stop.html (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/permission-error-expected.txt (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/permission-error.html (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/resources/removed-iframe.html (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/start-recognition-then-stop-expected.txt (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/start-recognition-then-stop.html (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/start-recognition-twice-exception-expected.txt (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/start-recognition-twice-exception.html (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/start-second-recognition-expected.txt (modified) (1 diff)
-
LayoutTests/fast/speechrecognition/start-second-recognition.html (modified) (2 diffs)
-
LayoutTests/imported/w3c/ChangeLog (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/speech-api/SpeechRecognition-basics.https-expected.txt (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/speech-api/historical-expected.txt (modified) (1 diff)
-
LayoutTests/imported/w3c/web-platform-tests/speech-api/idlharness.window-expected.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/Modules/speech/SpeechRecognition.idl (modified) (1 diff)
-
Source/WebCore/bindings/js/WebCoreBuiltinNames.h (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/TestWebKitAPI/Tests/WebKitCocoa/speechrecognition-user-permission-persistence.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r270861 r270868 1 2020-12-15 Sihui Liu <sihui_liu@apple.com> 2 3 Add webkit- prefix to SpeechRecognition 4 https://bugs.webkit.org/show_bug.cgi?id=219869 5 6 Reviewed by Geoffrey Garen. 7 8 Replace SpeechRecognition with webkitSpeechRecognition in tests. 9 10 * fast/speechrecognition/ios/audio-capture-expected.txt: 11 * fast/speechrecognition/ios/audio-capture.html: 12 * fast/speechrecognition/ios/restart-recognition-after-stop-expected.txt: 13 * fast/speechrecognition/ios/restart-recognition-after-stop.html: 14 * fast/speechrecognition/ios/start-recognition-then-stop-expected.txt: 15 * fast/speechrecognition/ios/start-recognition-then-stop.html: 16 * fast/speechrecognition/permission-error-expected.txt: 17 * fast/speechrecognition/permission-error.html: 18 * fast/speechrecognition/resources/removed-iframe.html: 19 * fast/speechrecognition/start-recognition-then-stop-expected.txt: 20 * fast/speechrecognition/start-recognition-then-stop.html: 21 * fast/speechrecognition/start-recognition-twice-exception-expected.txt: 22 * fast/speechrecognition/start-recognition-twice-exception.html: 23 * fast/speechrecognition/start-second-recognition-expected.txt: 24 * fast/speechrecognition/start-second-recognition.html: 25 1 26 2020-12-15 Commit Queue <commit-queue@webkit.org> 2 27 -
trunk/LayoutTests/fast/speechrecognition/ios/audio-capture-expected.txt
r270574 r270868 4 4 5 5 6 PASS recognition = new SpeechRecognition(); did not throw exception.6 PASS recognition = new webkitSpeechRecognition(); did not throw exception. 7 7 PASS recognition.start() did not throw exception. 8 8 Received start event -
trunk/LayoutTests/fast/speechrecognition/ios/audio-capture.html
r270574 r270868 10 10 } 11 11 12 shouldNotThrow("recognition = new SpeechRecognition();");12 shouldNotThrow("recognition = new webkitSpeechRecognition();"); 13 13 recognition.onstart = (event) => { 14 14 debug("Received start event"); -
trunk/LayoutTests/fast/speechrecognition/ios/restart-recognition-after-stop-expected.txt
r270772 r270868 4 4 5 5 6 PASS recognition = new SpeechRecognition() did not throw exception.6 PASS recognition = new webkitSpeechRecognition() did not throw exception. 7 7 PASS recognition.start() did not throw exception. 8 8 Received start event -
trunk/LayoutTests/fast/speechrecognition/ios/restart-recognition-after-stop.html
r270772 r270868 11 11 12 12 var hasStopped = false; 13 shouldNotThrow("recognition = new SpeechRecognition()");13 shouldNotThrow("recognition = new webkitSpeechRecognition()"); 14 14 recognition.continuous = true; 15 15 -
trunk/LayoutTests/fast/speechrecognition/ios/start-recognition-then-stop-expected.txt
r270846 r270868 4 4 5 5 6 PASS recognition = new SpeechRecognition() did not throw exception.6 PASS recognition = new webkitSpeechRecognition() did not throw exception. 7 7 PASS recognition.start() did not throw exception. 8 8 Received start event -
trunk/LayoutTests/fast/speechrecognition/ios/start-recognition-then-stop.html
r270846 r270868 11 11 12 12 var hasReceivedResult = false; 13 shouldNotThrow("recognition = new SpeechRecognition()");13 shouldNotThrow("recognition = new webkitSpeechRecognition()"); 14 14 recognition.continuous = true; 15 15 -
trunk/LayoutTests/fast/speechrecognition/permission-error-expected.txt
r269810 r270868 4 4 5 5 6 PASS recognition = new SpeechRecognition() did not throw exception.6 PASS recognition = new webkitSpeechRecognition() did not throw exception. 7 7 PASS recognition.start() did not throw exception. 8 8 PASS event.error is "not-allowed" -
trunk/LayoutTests/fast/speechrecognition/permission-error.html
r269810 r270868 11 11 } 12 12 13 shouldNotThrow("recognition = new SpeechRecognition()");13 shouldNotThrow("recognition = new webkitSpeechRecognition()"); 14 14 shouldNotThrow("recognition.start()"); 15 15 recognition.onerror = (event) => { -
trunk/LayoutTests/fast/speechrecognition/resources/removed-iframe.html
r269810 r270868 5 5 6 6 function startRecognition() { 7 recognition = new SpeechRecognition();7 recognition = new webkitSpeechRecognition(); 8 8 parent.removeFrame(); 9 9 recognition.start(); -
trunk/LayoutTests/fast/speechrecognition/start-recognition-then-stop-expected.txt
r270158 r270868 4 4 5 5 6 PASS recognition = new SpeechRecognition(); did not throw exception.6 PASS recognition = new webkitSpeechRecognition(); did not throw exception. 7 7 PASS recognition.start() did not throw exception. 8 8 Received start event -
trunk/LayoutTests/fast/speechrecognition/start-recognition-then-stop.html
r270158 r270868 10 10 } 11 11 12 shouldNotThrow("recognition = new SpeechRecognition();");12 shouldNotThrow("recognition = new webkitSpeechRecognition();"); 13 13 recognition.onstart = (event) => { 14 14 debug("Received start event"); -
trunk/LayoutTests/fast/speechrecognition/start-recognition-twice-exception-expected.txt
r269348 r270868 4 4 5 5 6 PASS recognition = new SpeechRecognition(); did not throw exception.6 PASS recognition = new webkitSpeechRecognition(); did not throw exception. 7 7 PASS recognition.start() did not throw exception. 8 8 PASS recognition.start() threw exception InvalidStateError: Recognition is being started or already started. -
trunk/LayoutTests/fast/speechrecognition/start-recognition-twice-exception.html
r269348 r270868 6 6 description("Verify that starting a started recognition throws exception."); 7 7 8 shouldNotThrow("recognition = new SpeechRecognition();");8 shouldNotThrow("recognition = new webkitSpeechRecognition();"); 9 9 shouldNotThrow("recognition.start()"); 10 10 shouldThrow("recognition.start()"); -
trunk/LayoutTests/fast/speechrecognition/start-second-recognition-expected.txt
r270158 r270868 4 4 5 5 6 PASS recognition = new SpeechRecognition(); did not throw exception.6 PASS recognition = new webkitSpeechRecognition(); did not throw exception. 7 7 PASS recognition.start() did not throw exception. 8 PASS secondRecognition = new SpeechRecognition(); did not throw exception.8 PASS secondRecognition = new webkitSpeechRecognition(); did not throw exception. 9 9 PASS secondRecognition.start() did not throw exception. 10 10 PASS receivedStart is true -
trunk/LayoutTests/fast/speechrecognition/start-second-recognition.html
r270158 r270868 10 10 } 11 11 12 shouldNotThrow("recognition = new SpeechRecognition();");12 shouldNotThrow("recognition = new webkitSpeechRecognition();"); 13 13 receivedStart = false; 14 14 recognition.onstart = (event) => { … … 25 25 26 26 shouldNotThrow("recognition.start()"); 27 shouldNotThrow("secondRecognition = new SpeechRecognition();");27 shouldNotThrow("secondRecognition = new webkitSpeechRecognition();"); 28 28 shouldNotThrow("secondRecognition.start()"); 29 29 -
trunk/LayoutTests/imported/w3c/ChangeLog
r270837 r270868 1 2020-12-15 Sihui Liu <sihui_liu@apple.com> 2 3 Add webkit- prefix to SpeechRecognition 4 https://bugs.webkit.org/show_bug.cgi?id=219869 5 6 Reviewed by Geoffrey Garen. 7 8 Update test expectations as SpeechRecognition becomes not available. 9 10 * web-platform-tests/speech-api/SpeechRecognition-basics.https-expected.txt: 11 * web-platform-tests/speech-api/historical-expected.txt: 12 * web-platform-tests/speech-api/idlharness.window-expected.txt: 13 1 14 2020-12-15 Antoine Quint <graouts@webkit.org> 2 15 -
trunk/LayoutTests/imported/w3c/web-platform-tests/speech-api/SpeechRecognition-basics.https-expected.txt
r268762 r270868 1 1 2 FAIL SpeechRecognition basics undefined is not an object (evaluating 'reco.grammars.length')2 FAIL SpeechRecognition basics Can't find variable: SpeechRecognition 3 3 -
trunk/LayoutTests/imported/w3c/web-platform-tests/speech-api/historical-expected.txt
r268713 r270868 3 3 PASS webkitSpeechGrammar interface should not exist 4 4 PASS webkitSpeechGrammarList interface should not exist 5 PASS webkitSpeechRecognition interface should not exist 5 FAIL webkitSpeechRecognition interface should not exist assert_false: expected false got true 6 6 PASS webkitSpeechRecognitionError interface should not exist 7 7 PASS webkitSpeechRecognitionEvent interface should not exist -
trunk/LayoutTests/imported/w3c/web-platform-tests/speech-api/idlharness.window-expected.txt
r268762 r270868 12 12 PASS Window includes WindowSessionStorage: member names are unique 13 13 PASS Window includes WindowLocalStorage: member names are unique 14 PASS SpeechRecognition interface: existence and properties of interface object 15 PASS SpeechRecognition interface object length 16 PASS SpeechRecognition interface object name 17 PASS SpeechRecognition interface: existence and properties of interface prototype object 18 PASS SpeechRecognition interface: existence and properties of interface prototype object's "constructor" property 19 PASS SpeechRecognition interface: existence and properties of interface prototype object's @@unscopables property 20 FAIL SpeechRecognition interface: attribute grammars assert_ true: The prototype object must have a property "grammars" expected true got false21 PASS SpeechRecognition interface: attribute lang22 PASS SpeechRecognition interface: attribute continuous 23 PASS SpeechRecognition interface: attribute interimResults 24 PASS SpeechRecognition interface: attribute maxAlternatives 25 PASS SpeechRecognition interface: operation start() 26 PASS SpeechRecognition interface: operation stop() 27 PASS SpeechRecognition interface: operation abort() 28 PASS SpeechRecognition interface: attribute onaudiostart 29 PASS SpeechRecognition interface: attribute onsoundstart 30 PASS SpeechRecognition interface: attribute onspeechstart 31 PASS SpeechRecognition interface: attribute onspeechend 32 PASS SpeechRecognition interface: attribute onsoundend 33 PASS SpeechRecognition interface: attribute onaudioend 34 PASS SpeechRecognition interface: attribute onresult 35 PASS SpeechRecognition interface: attribute onnomatch 36 PASS SpeechRecognition interface: attribute onerror 37 PASS SpeechRecognition interface: attribute onstart 38 PASS SpeechRecognition interface: attribute onend 39 PASS SpeechRecognition must be primary interface of new SpeechRecognition() 40 PASS Stringification of new SpeechRecognition() 41 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "grammars" with the proper type assert_ inherits: property "grammars" not found in prototype chain42 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "lang" with the proper type 43 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "continuous" with the proper type 44 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "interimResults" with the proper type 45 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "maxAlternatives" with the proper type 46 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "start()" with the proper type 47 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "stop()" with the proper type 48 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "abort()" with the proper type 49 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "onaudiostart" with the proper type 50 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "onsoundstart" with the proper type 51 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "onspeechstart" with the proper type 52 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "onspeechend" with the proper type 53 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "onsoundend" with the proper type 54 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "onaudioend" with the proper type 55 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "onresult" with the proper type 56 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "onnomatch" with the proper type 57 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "onerror" with the proper type 58 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "onstart" with the proper type 59 PASS SpeechRecognition interface: new SpeechRecognition() must inherit property "onend" with the proper type 14 FAIL SpeechRecognition interface: existence and properties of interface object assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 15 FAIL SpeechRecognition interface object length assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 16 FAIL SpeechRecognition interface object name assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 17 FAIL SpeechRecognition interface: existence and properties of interface prototype object assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 18 FAIL SpeechRecognition interface: existence and properties of interface prototype object's "constructor" property assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 19 FAIL SpeechRecognition interface: existence and properties of interface prototype object's @@unscopables property assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 20 FAIL SpeechRecognition interface: attribute grammars assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 21 FAIL SpeechRecognition interface: attribute lang assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 22 FAIL SpeechRecognition interface: attribute continuous assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 23 FAIL SpeechRecognition interface: attribute interimResults assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 24 FAIL SpeechRecognition interface: attribute maxAlternatives assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 25 FAIL SpeechRecognition interface: operation start() assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 26 FAIL SpeechRecognition interface: operation stop() assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 27 FAIL SpeechRecognition interface: operation abort() assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 28 FAIL SpeechRecognition interface: attribute onaudiostart assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 29 FAIL SpeechRecognition interface: attribute onsoundstart assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 30 FAIL SpeechRecognition interface: attribute onspeechstart assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 31 FAIL SpeechRecognition interface: attribute onspeechend assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 32 FAIL SpeechRecognition interface: attribute onsoundend assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 33 FAIL SpeechRecognition interface: attribute onaudioend assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 34 FAIL SpeechRecognition interface: attribute onresult assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 35 FAIL SpeechRecognition interface: attribute onnomatch assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 36 FAIL SpeechRecognition interface: attribute onerror assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 37 FAIL SpeechRecognition interface: attribute onstart assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 38 FAIL SpeechRecognition interface: attribute onend assert_own_property: self does not have own property "SpeechRecognition" expected property "SpeechRecognition" missing 39 FAIL SpeechRecognition must be primary interface of new SpeechRecognition() assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 40 FAIL Stringification of new SpeechRecognition() assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 41 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "grammars" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 42 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "lang" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 43 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "continuous" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 44 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "interimResults" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 45 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "maxAlternatives" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 46 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "start()" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 47 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "stop()" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 48 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "abort()" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 49 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "onaudiostart" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 50 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "onsoundstart" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 51 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "onspeechstart" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 52 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "onspeechend" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 53 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "onsoundend" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 54 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "onaudioend" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 55 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "onresult" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 56 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "onnomatch" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 57 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "onerror" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 58 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "onstart" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 59 FAIL SpeechRecognition interface: new SpeechRecognition() must inherit property "onend" with the proper type assert_equals: Unexpected exception when evaluating object expected null but got object "ReferenceError: Can't find variable: SpeechRecognition" 60 60 PASS SpeechRecognitionErrorEvent interface: existence and properties of interface object 61 61 PASS SpeechRecognitionErrorEvent interface object length -
trunk/Source/WebCore/ChangeLog
r270850 r270868 1 2020-12-15 Sihui Liu <sihui_liu@apple.com> 2 3 Add webkit- prefix to SpeechRecognition 4 https://bugs.webkit.org/show_bug.cgi?id=219869 5 6 Reviewed by Geoffrey Garen. 7 8 * Modules/speech/SpeechRecognition.idl: 9 * bindings/js/WebCoreBuiltinNames.h: 10 1 11 2020-12-15 Simon Fraser <simon.fraser@apple.com> 2 12 -
trunk/Source/WebCore/Modules/speech/SpeechRecognition.idl
r268762 r270868 27 27 ActiveDOMObject, 28 28 EnabledBySetting=SpeechRecognition, 29 InterfaceName=webkitSpeechRecognition, 29 30 Exposed=Window 30 31 ] interface SpeechRecognition : EventTarget { -
trunk/Source/WebCore/bindings/js/WebCoreBuiltinNames.h
r270842 r270868 470 470 macro(webkitOfflineAudioContext) \ 471 471 macro(webkitOscillatorNode) \ 472 macro(webkitSpeechRecognition) \ 472 473 macro(whenSignalAborted) \ 473 474 macro(window) \ -
trunk/Tools/ChangeLog
r270858 r270868 1 2020-12-15 Sihui Liu <sihui_liu@apple.com> 2 3 Add webkit- prefix to SpeechRecognition 4 https://bugs.webkit.org/show_bug.cgi?id=219869 5 6 Reviewed by Geoffrey Garen. 7 8 Replace SpeechRecognition with webkitSpeechRecognition in test. 9 10 * TestWebKitAPI/Tests/WebKitCocoa/speechrecognition-user-permission-persistence.html: 11 1 12 2020-12-15 Jonathan Bedard <jbedard@apple.com> 2 13 -
trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/speechrecognition-user-permission-persistence.html
r269810 r270868 7 7 stop(); 8 8 9 speechRecognition = new SpeechRecognition();9 speechRecognition = new webkitSpeechRecognition(); 10 10 speechRecognition.onerror = (event) => { 11 11 window.webkit.messageHandlers.testHandler.postMessage("Error: " + event.error + " - " + event.message);
Note: See TracChangeset
for help on using the changeset viewer.