Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(704)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: chrome/test/data/speech/enable_speech_input_switch_test.html
Issue
3064017
:
Add --enable-speech-input switch and set ENABLE_INPUT_SPEECH=1 (Closed)
Patch Set: Added button images to test shell and set flag.
Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
build/features_override.gypi
chrome/browser/renderer_host/browser_render_process_host.cc
chrome/browser/speech/enable_speech_input_switch_browsertest.cc
chrome/chrome_tests.gypi
chrome/common/chrome_switches.h
chrome/common/chrome_switches.cc
chrome/renderer/render_thread.cc
chrome/test/data/speech/enable_speech_input_switch_test.html
webkit/tools/test_shell/test_shell_mac.mm
webkit/tools/test_shell/test_shell_webkit_init.cc
webkit/tools/test_shell/test_shell_win.cc
View unified diff
|
Download patch
« no previous file with comments
|
« chrome/renderer/render_thread.cc
('k') |
webkit/tools/test_shell/test_shell_mac.mm »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
<html>
2
<head>
3
<title>SpeechInputEnableSwitchTest</title>
4
<script type="text/javascript">
5
function run() {
6
var inputField = document.getElementById('inputField');
7
if (inputField.speech) {
8
document.getElementById('status').innerHTML = 'FAIL';
9
document.location = '#fail';
10
} else {
11
document.getElementById('status').innerHTML = 'PASS';
12
document.location = '#pass';
13
}
14
}
15
</script>
16
</head>
17
<body onload="run()">
18
<input id='inputField' speech><br>
19
<div id="status">Running...</div>
20
</body>
21
</html>
22
OLD
NEW
« no previous file with comments
|
« chrome/renderer/render_thread.cc
('k') |
webkit/tools/test_shell/test_shell_mac.mm »
('j') |
no next file with comments »
Issue 3064017: Add --enable-speech-input switch and set ENABLE_INPUT_SPEECH=1 (Closed)
Created 10 years, 4 months ago by Satish
Modified 9 years, 7 months ago
Reviewers: jorlow, joth, hans
Base URL:
Comments: 2
This is Rietveld
408576698