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
(1408)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: LayoutTests/compositing/perspective-origin-overflow-hidden-expected.html
Issue
1030323005
:
Simplify application of perspective origin. (Closed)
Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: with new TestExpectations
Created 5 years, 8 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/TestExpectations
LayoutTests/compositing/perspective-origin-overflow-hidden.html
LayoutTests/compositing/perspective-origin-overflow-hidden-expected.html
LayoutTests/compositing/perspective-origin-with-scrollbars.html
LayoutTests/compositing/perspective-origin-with-scrollbars-expected.html
Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h
Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp
Source/core/paint/DeprecatedPaintLayer.h
Source/core/paint/DeprecatedPaintLayer.cpp
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« LayoutTests/TestExpectations
('K') |
« LayoutTests/compositing/perspective-origin-overflow-hidden.html
('k') |
LayoutTests/compositing/perspective-origin-with-scrollbars.html »
('j') |
Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
<!DOCTYPE html>
2
3
<style>
4
.container {
5
background-color: green;
6
border: 10px solid black;
7
overflow: visible;
8
position: relative;
9
width: 100px;
10
height: 100px;
11
margin: 10px 0;
12
perspective: 500px;
13
}
14
.transformed {
15
background-color: blue;
16
width: 50px;
17
height: 50px;
18
transform: translateZ(-1000px);
19
}
20
</style>
21
22
<div class="container">
23
<div class="transformed"></div>
24
</div>
25
26
<div class="container" style="perspective-origin: 60% 40px">
27
<div class="transformed"></div>
28
</div>
OLD
NEW
« LayoutTests/TestExpectations
('K') |
« LayoutTests/compositing/perspective-origin-overflow-hidden.html
('k') |
LayoutTests/compositing/perspective-origin-with-scrollbars.html »
('j') |
Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h »
('J')
Issue 1030323005: Simplify application of perspective origin. (Closed)
Created 5 years, 9 months ago by jbroman
Modified 5 years, 8 months ago
Reviewers: chrishtr, Ian Vollick, trchen
Base URL: svn://svn.chromium.org/blink/trunk
Comments: 7
This is Rietveld
408576698