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
(9)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars.html
Issue
1297323002
:
Do not create scrollbars if the subtree is invisible. (Closed)
Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add layout test.
Created 5 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:
LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars.html
LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars-expected.html
Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« no previous file
|
LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars-expected.html »
('j') |
LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars-expected.html »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
<!DOCTYPE HTML>
2
<style>
3
@-webkit-keyframes boring {
4
0% { transform: translateZ(0px); }
5
100% { transform: translateZ(0px); }
6
}
7
#scroller {
8
width: 100px;
9
height: 100px;
10
overflow: scroll;
11
animation: boring 5s infinite;
12
visibility: hidden;
13
}
14
#scrolled {
15
width: 10px;
16
height: 10px;
17
position: relative;
18
background: blue;
19
visibility: hidden;
20
top: 300px;
21
}
22
</style>
23
<div id="scroller">
24
<div id="scrolled"></div>
25
</div>
OLD
NEW
« no previous file with comments
|
« no previous file
|
LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars-expected.html »
('j') |
LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars-expected.html »
('J')
Issue 1297323002: Do not create scrollbars if the subtree is invisible. (Closed)
Created 5 years, 4 months ago by Ian Vollick
Modified 5 years, 4 months ago
Reviewers: ajuma
Base URL: svn://svn.chromium.org/blink/trunk
Comments: 1
This is Rietveld
408576698