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
(537)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: utils/tests/template/nestedview.tmpl
Issue
9728009
:
Template bug fixes and new features. (Closed)
Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Undid css.status change
Created 8 years, 9 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:
utils/css/cssoptions.dart
utils/css/parser.dart
utils/template/codegen.dart
utils/template/htmltree.dart
utils/template/parser.dart
utils/template/tokenizer.dart
utils/tests/template/callview.tmpl
utils/tests/template/name_entry_text.tmpl
utils/tests/template/nestedview.tmpl
utils/tests/template/productview_localname.tmpl
utils/tests/template/realviews.tmpl
utils/tests/template/run
utils/tests/template/test_nested.dart
utils/tests/template/top_searches.tmpl
utils/tests/template/top_searches2.tmpl
utils/tests/template/top_searches_css.tmpl
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« utils/tests/template/name_entry_text.tmpl
('k') |
utils/tests/template/productview_localname.tmpl »
('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
template NestedView(Person person1, Person person2) {
2
<div>
3
<span var=a1>
4
<h1>
5
${#with person1 p1}
6
<div>
7
<span>${p1.name}</span>
8
<span>-</span>
9
<span>${p1.age}</span>
10
<div style="background-color:yellow;">
11
${#with person2 p2}
12
<div>
13
<span style="color:green;">${p2.age}</span>
14
<span>-</span>
15
<span style="color:green;">${p2.name}</span>
16
<div style="color:blue;font-weight:bold">${p1.name}=${p2.age}< /div>
17
</div>
18
${/with}
19
<div style="background-color:green; color: red;">${p1.name}</div>
20
</div>
21
</div>
22
${/with}
23
</h1>
24
</span>
25
</div>
26
}
27
OLD
NEW
« no previous file with comments
|
« utils/tests/template/name_entry_text.tmpl
('k') |
utils/tests/template/productview_localname.tmpl »
('j') |
no next file with comments »
Issue 9728009: Template bug fixes and new features. (Closed)
Created 8 years, 9 months ago by terry
Modified 8 years, 9 months ago
Reviewers: Siggi Cherem (dart-lang)
Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Comments: 0
This is Rietveld
408576698