Closed
Bug 1034670
Opened 12 years ago
Closed 12 years ago
The canvas graphs should draw the background separately from the plotted data
Categories
(DevTools :: Performance Tools (Profiler/Timeline), defect)
DevTools
Performance Tools (Profiler/Timeline)
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 33
People
(Reporter: vporof, Assigned: vporof)
References
Details
Attachments
(1 file, 1 obsolete file)
|
6.69 KB,
patch
|
pbro
:
review+
|
Details | Diff | Splinter Review |
Needed for bug 1034669.
| Assignee | ||
Comment 1•12 years ago
|
||
Comment 2•12 years ago
|
||
Comment on attachment 8451104 [details] [diff] [review]
v1
Review of attachment 8451104 [details] [diff] [review]:
-----------------------------------------------------------------
::: browser/devtools/shared/widgets/Graphs.jsm
@@ +645,4 @@
> let ctx = this._ctx;
> ctx.clearRect(0, 0, this._width, this._height);
>
> + if (this._cachedHighlightMask) {
I think you meant this._cachedBackgroundImage here instead.
@@ +645,5 @@
> let ctx = this._ctx;
> ctx.clearRect(0, 0, this._width, this._height);
>
> + if (this._cachedHighlightMask) {
> + ctx.drawImage(this._cachedHighlightMask, 0, 0, this._width, this._height);
And here.
Attachment #8451104 -
Flags: review?(pbrosset)
| Assignee | ||
Comment 3•12 years ago
|
||
Yup!
Attachment #8451104 -
Attachment is obsolete: true
Attachment #8451643 -
Flags: review?(pbrosset)
Updated•12 years ago
|
Attachment #8451643 -
Flags: review?(pbrosset) → review+
| Assignee | ||
Comment 4•12 years ago
|
||
Whiteboard: [fixed-in-fx-team]
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Whiteboard: [fixed-in-fx-team]
Target Milestone: --- → Firefox 33
Updated•8 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•