Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events.html

Issue 14874017: Add speech synthesizer tests (from WebKit). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix ScriptWrappable::init and address nits Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events.html
diff --git a/LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events.html b/LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events.html
new file mode 100644
index 0000000000000000000000000000000000000000..be4fa5772dfebe0e0a60b5002b0f90cb8bb067f8
--- /dev/null
+++ b/LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events.html
@@ -0,0 +1,42 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<html>
+<head>
+<script src="../js/resources/js-test-pre.js"></script>
+</head>
+<body id="body">
+
+<div id="console"></div>
+
+<script>
+
+ description("This tests that a speech job will generate the correct boundary events.");
+
+ if (window.testRunner)
+ testRunner.waitUntilDone();
+
+ if (window.internals)
+ window.internals.enableMockSpeechSynthesizer();
+
+ window.jsTestIsAsync = true;
+
+ var u = new SpeechSynthesisUtterance("this is a test");
+ u.onstart = function(event) {
+ debug("Speech started");
+ }
+
+ u.onboundary = function(event) {
+ debug("Boundary event: " + event.name + ", Character index: " + event.charIndex);
+ }
+
+ u.onend = function(event) {
+ finishJSTest();
+ }
+
+ // Queue the first job which will start speaking immediately.
+ speechSynthesis.speak(u);
+
+</script>
+
+<script src="../js/resources/js-test-post.js"></script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698