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
(121)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: chrome/test/data/devtools/completion_on_pause.html
Issue
6295010
:
DevTools: re-enable devtools tests. (Closed)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed obsolete test data.
Created 9 years, 11 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:
chrome/browser/debugger/devtools_sanity_unittest.cc
chrome/test/data/devtools/completion_on_pause.html
chrome/test/data/devtools/console_test_page.html
chrome/test/data/devtools/image.html
chrome/test/data/devtools/image.png
chrome/test/data/devtools/js_page.html
chrome/test/data/devtools/resource_test.js
chrome/test/data/devtools/resource_test_page.html
chrome/test/data/devtools/simple_page.html
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« chrome/browser/debugger/devtools_sanity_unittest.cc
('k') |
chrome/test/data/devtools/console_test_page.html »
('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
<script>
4
5
function createClosure(p) {
6
var createClosureLocal = 10;
7
return function innerFunction(parameter1) {
8
var closureLocal = createClosureLocal + p + parameter1;
9
debugger;
10
};
11
}
12
13
function callDebugger(a) {
14
var local = a;
15
var local2 = a;
16
var local3 = a;
17
var s = a.name_;
18
debugger;
19
}
20
21
function handleClick() {
22
var self = {
23
field1: {id: 1,
24
name: 'a'},
25
field2: 2,
26
};
27
self.m = createClosure('p value');
28
self.m('closure parameter');
29
}
30
</script>
31
</head>
32
<body>
33
<input type='button' onclick='handleClick()' value='Test'/>
34
</body>
35
</html>
OLD
NEW
« no previous file with comments
|
« chrome/browser/debugger/devtools_sanity_unittest.cc
('k') |
chrome/test/data/devtools/console_test_page.html »
('j') |
no next file with comments »
Issue 6295010: DevTools: re-enable devtools tests. (Closed)
Created 9 years, 11 months ago by pfeldman
Modified 9 years, 7 months ago
Reviewers: yurys
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 1
This is Rietveld
408576698