Closed
Bug 539024
Opened 15 years ago
Closed 14 years ago
Add a profile panDown with steps in FennecMark
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: vingtetun, Unassigned)
References
Details
Actually fennecmark profile a continous pan from top to bottom. Since a continous pan didn't require redrawing the tiles we need to add a "step-by-step" pan test to check performance on that.
"Step-by-step" pan is actually what user are doing when they read an article or look for an info into a website by explorating the viewable area.
Comment 1•15 years ago
|
||
so it would be:
x = total_height / 10
position = 0
while (position < total_height) {
pan position to position + x
position += x
sleep 10
}
what about zooming added to this?
Reporter | ||
Comment 2•15 years ago
|
||
(In reply to comment #1)
> so it would be:
>
> x = total_height / 10
> position = 0
> while (position < total_height) {
> pan position to position + x
> position += x
> sleep 10
> }
>
Instead of sleep i guess we should release the mousedown to cause a refresh of the tiles.
>
> what about zooming added to this?
why not :)
Reporter | ||
Comment 3•14 years ago
|
||
There is not tiles anymore!
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•