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
(23)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: third_party/WebKit/LayoutTests/svg/canvas/canvas-draw-image-svg-fragment-expected.html
Issue
1489003002
:
Drop Image::setContainerSize() (Closed)
Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back to ps#1 way, with fixed is_expensive test
Created 5 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:
third_party/WebKit/LayoutTests/svg/canvas/canvas-draw-image-svg-fragment.html
third_party/WebKit/LayoutTests/svg/canvas/canvas-draw-image-svg-fragment-expected.html
third_party/WebKit/Source/core/html/HTMLImageElement.h
third_party/WebKit/Source/core/html/HTMLImageElement.cpp
third_party/WebKit/Source/core/html/canvas/CanvasImageSource.h
third_party/WebKit/Source/core/svg/graphics/SVGImage.h
third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.cpp
third_party/WebKit/Source/platform/graphics/CrossfadeGeneratedImage.h
third_party/WebKit/Source/platform/graphics/GeneratedImage.h
third_party/WebKit/Source/platform/graphics/Image.h
View unified diff
|
Download patch
« no previous file with comments
|
« third_party/WebKit/LayoutTests/svg/canvas/canvas-draw-image-svg-fragment.html
('k') |
third_party/WebKit/Source/core/html/HTMLImageElement.h »
('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
<!DOCTYPE html>
2
<title>drawImage() with SVG fragments</title>
3
<script>
4
onload = function() {
5
var context = document.getElementsByTagName('canvas')[0].getContext('2d' );
6
fillStyles = [ "green", "red", "blue" ];
7
fillStyles.forEach(function(fillStyle, i) {
8
context.fillStyle = fillStyle;
9
context.fillRect(i*60, i*60, 120, 120);
10
});
11
}
12
</script>
13
<canvas width="240" height="240"></canvas>
OLD
NEW
« no previous file with comments
|
« third_party/WebKit/LayoutTests/svg/canvas/canvas-draw-image-svg-fragment.html
('k') |
third_party/WebKit/Source/core/html/HTMLImageElement.h »
('j') |
no next file with comments »
Issue 1489003002: Drop Image::setContainerSize() (Closed)
Created 5 years ago by davve
Modified 5 years ago
Reviewers: fs, pdr., f(malita), Justin Novosad, Stephen White
Base URL: https://chromium.googlesource.com/chromium/src.git@master
Comments: 7
This is Rietveld
408576698