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
(564)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: LayoutTests/animations/interpolation/orphans-interpolation.html
Issue
108663009
:
orphans and widows should be positive integer. (Closed)
Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed animations/interpolation/orphans-interpolation.html
Created 7 years 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/animations/interpolation/orphans-interpolation.html
LayoutTests/animations/interpolation/orphans-interpolation-expected.txt
LayoutTests/fast/css/negative-orphans-crash.html
LayoutTests/fast/css/negative-orphans-crash-expected.txt
LayoutTests/virtual/legacy-animations-engine/animations/interpolation/orphans-interpolation-expected.txt
Source/core/css/CSSParser-in.cpp
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« no previous file
|
LayoutTests/animations/interpolation/orphans-interpolation-expected.txt »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
1 <!DOCTYPE html>
1 <!DOCTYPE html>
2 <body>
2 <body>
3 <style>
3 <style>
4 .target {
4 .target {
5 width: 100px;
5 width: 100px;
6 height: 100px;
6 height: 100px;
7 background-color: black;
7 background-color: black;
8 display: inline-block;
8 display: inline-block;
9 }
9 }
10 </style>
10 </style>
11 <script src="resources/interpolation-test.js"></script>
11 <script src="resources/interpolation-test.js"></script>
12 <script>
12 <script>
13 assertInterpolation({
13 assertInterpolation({
14 property: 'orphans',
14 property: 'orphans',
15 from: '10',
15 from: '10',
16
to: '
0
'
16
to: '
1
'
17 }, [
17 }, [
18 {at: -0.5, is: '15'},
18 {at: -0.5, is: '15'},
19 {at: 0, is: '10'},
19 {at: 0, is: '10'},
20 {at: 0.3, is: '7'},
20 {at: 0.3, is: '7'},
21
{at: 0.7, is: '
3
'},
21
{at: 0.7, is: '
4
'},
22 // Only positive integers are valid
22 // Only positive integers are valid
23 {at: 1, is: '1'},
23 {at: 1, is: '1'},
24 {at: 1.5, is: '1'}
24 {at: 1.5, is: '1'}
25 ]);
25 ]);
26 </script>
26 </script>
OLD
NEW
« no previous file with comments
|
« no previous file
|
LayoutTests/animations/interpolation/orphans-interpolation-expected.txt »
('j') |
no next file with comments »
Issue 108663009: orphans and widows should be positive integer. (Closed)
Created 7 years ago by tasak
Modified 7 years ago
Reviewers: tkent
Base URL: svn://svn.chromium.org/blink/trunk
Comments: 0
This is Rietveld
408576698