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
(12)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: gm/rebaseline_server/static/new/partials/index-view.html
Issue
538613002
:
Refactored frontend for the rebaseline server. (Closed)
Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Addressing issues raised during CR
Created 6 years, 3 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:
.gitignore
gm/rebaseline_server/static/new/bower.json
gm/rebaseline_server/static/new/css/app.css
gm/rebaseline_server/static/new/js/app.js
gm/rebaseline_server/static/new/new-index.html
gm/rebaseline_server/static/new/partials/index-view.html
gm/rebaseline_server/static/new/partials/rebaseline-view.html
View unified diff
|
Download patch
« no previous file with comments
|
« gm/rebaseline_server/static/new/new-index.html
('k') |
gm/rebaseline_server/static/new/partials/rebaseline-view.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
<div class="container-fluid ng-cloak" ng-cloak>
2
<div class="row" ng-show="state === c.ST_LOADING">
3
<h4>Loading ...</h4>
4
</div>
5
6
<div class="row" ng-show="state === c.ST_READY">
7
<h4>GM Expectations vs Actuals:</h4>
8
<ul>
9
<li><a href="#/view?{{ qStr({ resultsToLoad: c.RESULTS_FAILURES }) } }">Failures</a></li>
10
<li><a href="#/view?{{ qStr({ resultsToLoad: c.RESULTS_ALL }) }}">Al l</a></li>
11
</ul>
12
13
<h4>Rendered SKPs:</h4>
14
<ul>
15
<li ng-repeat="oneSKP in allSKPs">
16
<a href="#/view?{{ qStr(oneSKP.params) }}">
17
{{oneSKP.title}}
18
</a>
19
</li>
20
</ul>
21
</div>
22
</div>
OLD
NEW
« no previous file with comments
|
« gm/rebaseline_server/static/new/new-index.html
('k') |
gm/rebaseline_server/static/new/partials/rebaseline-view.html »
('j') |
no next file with comments »
Issue 538613002: Refactored frontend for the rebaseline server. (Closed)
Created 6 years, 3 months ago by stephana
Modified 6 years, 3 months ago
Reviewers: jcgregorio
Base URL: https://skia.googlesource.com/skia.git@master
Comments: 14
This is Rietveld
408576698