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

Unified Diff: chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/console_tts_engine.html

Issue 9688004: Sample extensions page does not feature chrome.ttsEngine. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Trying again... Created 8 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: chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/console_tts_engine.html
diff --git a/chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/console_tts_engine.html b/chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/console_tts_engine.html
new file mode 100644
index 0000000000000000000000000000000000000000..62fd68d06024ed4ffc9bad89b807912cddaa2d47
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/console_tts_engine.html
@@ -0,0 +1,49 @@
+<html>
+<head>
+ <title>Console TTS Engine</title>
+ <style>
+ body {
+ font-family: arial, helvetica, sans-serif;
+ }
+ table {
+ text-align: center;
+ padding: 10px;
+ }
+ #text {
+ text-align: left;
+ padding: 4px;
+ border: 1px solid #aaa;
+ width: 99%;
+ min-height: 100px;
+ overflow: auto;
+ }
+ </style>
+ <script type="text/javascript">
+ function clearText() {
+ document.getElementById("text").innerHTML = "";
+ }
+ </script>
+</head>
+<body>
+ <table>
+ <tr>
+ <th>Voice Name</th>
+ <th>Language</th>
+ <th>Gender</th>
+ <th>Rate</th>
+ <th>Pitch</th>
+ <th>Volume</th>
+ </tr>
+ <tr>
+ <td id="voiceName"></td>
+ <td id="lang"></td>
+ <td id="gender"></td>
+ <td id="rate"></td>
+ <td id="pitch"></td>
+ <td id="volume"></td>
+ </tr>
+ </table>
+ <button onclick="clearText()">Clear</button>
+ <p id="text"></p>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698