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
(92)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: third_party/WebKit/LayoutTests/fast/canvas/text-rendering-frameless-canvas-expected.html
Issue
2336693002
:
Rendering text to a canvas in a frame-less document. (Closed)
Patch Set:
Created 4 years, 3 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:
third_party/WebKit/LayoutTests/fast/canvas/text-rendering-frameless-canvas.html
third_party/WebKit/LayoutTests/fast/canvas/text-rendering-frameless-canvas-expected.html
third_party/WebKit/Source/core/css/CSSFontSelector.cpp
third_party/WebKit/Source/core/css/resolver/FontBuilder.cpp
third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
third_party/WebKit/Source/core/dom/Document.h
third_party/WebKit/Source/core/dom/Document.cpp
third_party/WebKit/Source/core/dom/Element.cpp
third_party/WebKit/Source/core/dom/StyleEngine.cpp
third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.cpp
View unified diff
|
Download patch
« no previous file with comments
|
« third_party/WebKit/LayoutTests/fast/canvas/text-rendering-frameless-canvas.html
('k') |
third_party/WebKit/Source/core/css/CSSFontSelector.cpp »
('j') |
third_party/WebKit/Source/core/dom/Document.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
<html>
3
<body>
4
5
<canvas id="srcCanvas" width="200" height="100" style="border:1px solid #d3d3d3; "></canvas>
6
7
<script>
8
var cnv = document.getElementById('srcCanvas');
9
var ctx = cnv.getContext('2d');
10
ctx.font = "10px sans-serif";
11
ctx.strokeStyle='rgba(140, 0.013953202404081821)';
12
ctx.strokeText('Hello World!' ,1, 30);
13
ctx.font = "30px Verdana";
14
ctx.strokeText('Goodbye!' ,1, 70);
15
</script>
16
17
</body>
18
</html>
OLD
NEW
« no previous file with comments
|
« third_party/WebKit/LayoutTests/fast/canvas/text-rendering-frameless-canvas.html
('k') |
third_party/WebKit/Source/core/css/CSSFontSelector.cpp »
('j') |
third_party/WebKit/Source/core/dom/Document.h »
('J')
Issue 2336693002: Rendering text to a canvas in a frame-less document. (Closed)
Created 4 years, 3 months ago by zakerinasab
Modified 4 years, 2 months ago
Reviewers: esprehn, Justin Novosad
Base URL:
Comments: 9
This is Rietveld
408576698