Closed
Bug 1011187
Opened 11 years ago
Closed 11 years ago
HTML Canvas does not render small-caps font variants
Categories
(Core :: Graphics: Canvas2D, defect)
Tracking
()
VERIFIED
FIXED
mozilla32
| Tracking | Status | |
|---|---|---|
| firefox32 | --- | verified |
People
(Reporter: simon.sarris, Assigned: jfkthame)
References
Details
Attachments
(1 file)
|
2.80 KB,
patch
|
roc
:
review+
|
Details | Diff | Splinter Review |
Setting the canvas font to a small-caps variant does not produce a small-caps effect.
var can = document.getElementById('canvas1');
var ctx = can.getContext('2d');
ctx.font = "italic small-caps bold 22px verdana, tahoma, serif";
ctx.fillText("Test One Two Three", 50, 50);
Simple example: http://jsfiddle.net/vrS2B/
Other browsers:
Chrome: Works
iOS Safari: Works
IE11: Does not work
Updated•11 years ago
|
Component: General → Canvas: 2D
Product: Firefox → Core
Comment 1•11 years ago
|
||
Confirmed 32.0a1 (2014-05-15), win 7 x64
Status: UNCONFIRMED → NEW
Ever confirmed: true
| Assignee | ||
Comment 2•11 years ago
|
||
Fixing this within the current architecture used for small-caps in HTML is hard.
But if we move the implementation of small-caps from layout (nsTextFrame.cpp and nsTextRunTransformations.cpp) over into gfx, making it an attribute of gfxFontStyle that is implemented at rendering time, it'll become trivial.
I have an experimental patch for this refactoring. I'll file a separate bug for that, and tidy up the patch for review; then we can make this dependent on it.
(See also bug 935739 re XUL text.)
| Assignee | ||
Comment 3•11 years ago
|
||
This issue is fixed by bug 1015603; here's a reftest for it.
Attachment #8428720 -
Flags: review?(roc)
| Assignee | ||
Updated•11 years ago
|
Assignee: nobody → jfkthame
Status: NEW → ASSIGNED
Attachment #8428720 -
Flags: review?(roc) → review+
| Assignee | ||
Comment 4•11 years ago
|
||
Target Milestone: --- → mozilla32
Comment 5•11 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
| Reporter | ||
Comment 6•11 years ago
|
||
Confirmed working in nightly. You guys are seriously the best in terms of bug response of all the browsers I deal with. By miles and miles.
Thank you so much.
Comment 7•11 years ago
|
||
verified based on comment 6
Status: RESOLVED → VERIFIED
status-firefox32:
--- → verified
You need to log in
before you can comment on or make changes to this bug.
Description
•