Closed
Bug 1034668
Opened 10 years ago
Closed 10 years ago
The `getMappedSelection` method for all canvas graphs should clamp the selection bounds
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)
3.08 KB,
patch
|
pbro
:
review+
|
Details | Diff | Splinter Review |
While working on bug 879008, I noticed that `getMappedSelection` may receive values that span outside the given data range. Theoretically this shouldn't be a problem.
Suppose we have a recording, with the default view:
> graph: start at X1 ... end at Y1
> tree : start at X1 ... end at Y1
However, given a zoomed recording (which still maintains the original data source, but just provides a different view for it):
> graph: start at X2 ... end at Y2
> tree : start at X2 ... end at Y2, with X2 > Y1 and Y2 < Y1
...let's make a selection made via click+drag on the graph, say from X2+n to Y2-m, based on which the tree will be filtered as well. Now, via mousedown+move we can move the selection around (while maintaining its width), the bounds of which will not be clamped to [X2, Y2]. This way, one can end up with a selection spanning from X2-p to Y2-q, and X2-p may be > X1, outside the current zoomed recording bounds, but still in the original dataset.
Hopefully I made myself clear.
Assignee | ||
Comment 1•10 years ago
|
||
Updated•10 years ago
|
Attachment #8451102 -
Flags: review?(pbrosset) → review+
Assignee | ||
Comment 2•10 years ago
|
||
Whiteboard: [fixed-in-fx-team]
Status: ASSIGNED → RESOLVED
Closed: 10 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
Whiteboard: [fixed-in-fx-team]
Target Milestone: --- → Firefox 33
Updated•6 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•