Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Load NavGraph asynchronously to improve start up time (Offense) #16900

Closed
MarcLeclair opened this issue Dec 7, 2020 · 3 comments
Closed

Load NavGraph asynchronously to improve start up time (Offense) #16900

MarcLeclair opened this issue Dec 7, 2020 · 3 comments
Assignees
Labels
eng:qa:verified QA Verified performance Possible performance wins

Comments

@MarcLeclair
Copy link
Contributor

MarcLeclair commented Dec 7, 2020

Loading the NavGraph takes ~ 50ms on the G5+. We can remove our NavGraph from the XML and instantiate it asynchronously to try to gain some time on start up ( should be 30-40 ms since starting the async stuff can take up to 10ms)

┆Issue is synchronized with this Jira Task

@MarcLeclair MarcLeclair created this issue from a note in Performance, front-end roadmap (In progress) Dec 7, 2020
@MarcLeclair MarcLeclair self-assigned this Dec 7, 2020
@MarcLeclair MarcLeclair added the performance Possible performance wins label Dec 7, 2020
@github-actions github-actions bot added the needs:triage Issue needs triage label Dec 7, 2020
@ekager ekager removed the needs:triage Issue needs triage label Dec 18, 2020
@mcomella
Copy link
Contributor

PR is here: #16908

MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Jan 13, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Jan 15, 2021
@MarcLeclair MarcLeclair moved this from In progress to Waiting in Performance, front-end roadmap Jan 15, 2021
@mcomella mcomella moved this from Waiting to In progress in Performance, front-end roadmap Jan 25, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Feb 3, 2021
For mozilla-mobile#18900: inflate navGraph programatically

For #169000: Made NavGraph inflation asynchronous

For mozilla-mobile#16900: Changed to block with runBlocking

For mozilla-mobile#16900: Refactored blocking call into a function
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Feb 10, 2021
For mozilla-mobile#18900: inflate navGraph programatically

For #169000: Made NavGraph inflation asynchronous

For mozilla-mobile#16900: Changed to block with runBlocking

For mozilla-mobile#16900: Refactored blocking call into a function
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Feb 11, 2021
For mozilla-mobile#18900: inflate navGraph programatically

For #169000: Made NavGraph inflation asynchronous

For mozilla-mobile#16900: Changed to block with runBlocking

For mozilla-mobile#16900: Refactored blocking call into a function
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Feb 25, 2021
For mozilla-mobile#18900: inflate navGraph programatically

For #169000: Made NavGraph inflation asynchronous

For mozilla-mobile#16900: Changed to block with runBlocking

For mozilla-mobile#16900: Refactored blocking call into a function

For 16900: NavGraph inflation is now async

We now attach the nav graph (or check if its attached) on every nav call ( an extension function for NavController).
This is done by checking the value of the job stored in PerfNavController.map which keeps track of the job with the NavController as a Key.
If the job hasn't been completed, it will block the main thread until the job is done. The job itself is responsible for attaching the navgraph
to the navcontroller (and the inflation of the latter too)

For 16900: Changed other calls of navigate to loadNavGraphBeforeNavigate

Some navigation methods are directly called from the NavController instead of the extension function .nav. Therefore, we need to make sure the
navgraph is loaded before we can call those navigation methods

For 16900: Rebase on master
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Feb 25, 2021
…s for performance purposes

For mozilla-mobile#18900: inflate navGraph programatically

For #169000: Made NavGraph inflation asynchronous

For mozilla-mobile#16900: Changed to block with runBlocking

For mozilla-mobile#16900: Refactored blocking call into a function

For 16900: NavGraph inflation is now async

We now attach the nav graph (or check if its attached) on every nav call ( an extension function for NavController).
This is done by checking the value of the job stored in PerfNavController.map which keeps track of the job with the NavController as a Key.
If the job hasn't been completed, it will block the main thread until the job is done. The job itself is responsible for attaching the navgraph
to the navcontroller (and the inflation of the latter too)

For 16900: Changed other calls of navigate to loadNavGraphBeforeNavigate

Some navigation methods are directly called from the NavController instead of the extension function .nav. Therefore, we need to make sure the
navgraph is loaded before we can call those navigation methods

For 16900: Rebase on master
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Mar 2, 2021
…comments.

1)The Asynchronous method is now found in NavGraphProvider.kt. It creates a job on the IO dispatcher
2)The Job is tracked through a WeakHashMap from Controller --> NavGraph
3)The Coroutine scope doesn't use MainScope() anymore
4)The Coroutine is cancelled if the Activity is destroyed
5)The tests mockk the blockForNavGraphInflation method through the FenixReoboelectricTestApplication instead of calling the mock every setup()
@MarcLeclair MarcLeclair moved this from In progress to Waiting in Performance, front-end roadmap Mar 3, 2021
@MarcLeclair MarcLeclair moved this from Waiting to In progress in Performance, front-end roadmap Mar 3, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Mar 11, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Mar 11, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Mar 11, 2021
We need linting rules to make sure no one calls the NavController.navigate() methods
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Mar 11, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Mar 11, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Mar 11, 2021
For mozilla-mobile#18900: inflate navGraph programatically

For #169000: Made NavGraph inflation asynchronous

For mozilla-mobile#16900: Changed to block with runBlocking

For mozilla-mobile#16900: Refactored blocking call into a function
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Mar 11, 2021
…comments.

1)The Asynchronous method is now found in NavGraphProvider.kt. It creates a job on the IO dispatcher
2)The Job is tracked through a WeakHashMap from Controller --> NavGraph
3)The Coroutine scope doesn't use MainScope() anymore
4)The Coroutine is cancelled if the Activity is destroyed
5)The tests mockk the blockForNavGraphInflation method through the FenixReoboelectricTestApplication instead of calling the mock every setup()
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Mar 11, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Mar 11, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Mar 11, 2021
@MarcLeclair MarcLeclair moved this from In progress to Waiting in Performance, front-end roadmap Mar 11, 2021
mcomella pushed a commit to mcomella/fenix that referenced this issue Mar 13, 2021
@mcomella mcomella moved this from Waiting to In progress in Performance, front-end roadmap Mar 15, 2021
@mcomella mcomella self-assigned this Mar 15, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Apr 9, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Apr 9, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Apr 9, 2021
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Apr 12, 2021
For mozilla-mobile#16900: removed nav graph from xml

For mozilla-mobile#16900: inflate navGraph programatically

For mozilla-mobile#16900: Made NavGraph inflation asynchronous

For mozilla-mobile#16900: Changed to block with runBlocking

For mozilla-mobile#16900: Refactored blocking call into a function

For 16900: NavGraph inflation is now async

We now attach the nav graph (or check if its attached) on every nav call ( an extension function for NavController).
This is done by checking the value of the job stored in PerfNavController.map which keeps track of the job with the NavController as a Key.
If the job hasn't been completed, it will block the main thread until the job is done. The job itself is responsible for attaching the navgraph
to the navcontroller (and the inflation of the latter too)

For 16900: rebased upstream master

For 16900: Rebase on master

For mozilla-mobile#16900: Fixed Async Navgraph navigation per review comments.

1)The Asynchronous method is now found in NavGraphProvider.kt. It creates a job on the IO dispatcher
2)The Job is tracked through a WeakHashMap from Controller --> NavGraph
3)The Coroutine scope doesn't use MainScope() anymore
4)The Coroutine is cancelled if the Activity is destroyed
5)The tests mockk the blockForNavGraphInflation method through the FenixReoboelectricTestApplication instead of calling the mock every setup()

For mozilla-mobile#16900: inflateNavGraphAsync now takes navController

For mozilla-mobile#16900: Pass lifecycleScope to NavGraphProvider

For mozilla-mobile#16900: removed unused mock

For mozilla-mobile#16900: Added linter rules for navigate calls

We need linting rules to make sure no one calls the NavController.navigate() methods

For mozilla-mobile#16900: Added TestRule to help abstract the mocks in the code

For 16900: Fix linting problems

For mozilla-mobile#16900: Cleaned duplicated code in tests

For mozilla-mobile#16900: cleaned up NavGraphTestRule for finished test

For mozilla-mobile#16900: had to revert an accidentally edited file

For mozilla-mobile#16900: rebased master
MarcLeclair pushed a commit to MarcLeclair/fenix that referenced this issue Apr 12, 2021
This is composed of squash commits, the original messages can be found below:

-> DisableNavGraphProviderAssertionRule + kdoc.

Use test rule in RobolectricApplication.

Fix failing CrashReporterControllerTest

Fix blame by -> navigate in tests.

This commit was generated by the following commands only:
```
find app/src/test -type f -exec sed -i '' "/import org.mozilla.fenix.ext.navigateBlockingForAsyncNavGraph/d" {} \;
find app/src/test -type f -exec sed -i "" "s/navigateBlockingForAsyncNavGraph/navigate/g" {} \;
git checkout app/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
```

Fix various blame

This is expected to be squashed into the first commit so, if so, it'd
fix the blame.

Move test rule to helpers pkg.

add missing license header

Add import change I missed

fix unused imports

Replace robolectricTestrunner with test rule.

Improve navGraphProvider docs

Remove unnecessary rule as defined by robolectric.

add clarifying comment to robolectric

remove unnecessary space
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Apr 12, 2021
… fixes

3 squash commits:
 *Changed violation message and fixed the lint rule for MozillaNavigateCheck
 *Added suppression to NavController.kt
 *Fixed detekt violations
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Apr 12, 2021
… fixes

3 squash commits:
 *Changed violation message and fixed the lint rule for MozillaNavigateCheck
 *Added suppression to NavController.kt
 *Fixed detekt violations
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Apr 13, 2021
For mozilla-mobile#16900: removed nav graph from xml

For mozilla-mobile#16900: inflate navGraph programatically

For mozilla-mobile#16900: Made NavGraph inflation asynchronous

For mozilla-mobile#16900: Changed to block with runBlocking

For mozilla-mobile#16900: Refactored blocking call into a function

For 16900: NavGraph inflation is now async

We now attach the nav graph (or check if its attached) on every nav call ( an extension function for NavController).
This is done by checking the value of the job stored in PerfNavController.map which keeps track of the job with the NavController as a Key.
If the job hasn't been completed, it will block the main thread until the job is done. The job itself is responsible for attaching the navgraph
to the navcontroller (and the inflation of the latter too)

For 16900: rebased upstream master

For 16900: Rebase on master

For mozilla-mobile#16900: Fixed Async Navgraph navigation per review comments.

1)The Asynchronous method is now found in NavGraphProvider.kt. It creates a job on the IO dispatcher
2)The Job is tracked through a WeakHashMap from Controller --> NavGraph
3)The Coroutine scope doesn't use MainScope() anymore
4)The Coroutine is cancelled if the Activity is destroyed
5)The tests mockk the blockForNavGraphInflation method through the FenixReoboelectricTestApplication instead of calling the mock every setup()

For mozilla-mobile#16900: inflateNavGraphAsync now takes navController

For mozilla-mobile#16900: Pass lifecycleScope to NavGraphProvider

For mozilla-mobile#16900: removed unused mock

For mozilla-mobile#16900: Added linter rules for navigate calls

We need linting rules to make sure no one calls the NavController.navigate() methods

For mozilla-mobile#16900: Added TestRule to help abstract the mocks in the code

For 16900: Fix linting problems

For mozilla-mobile#16900: Cleaned duplicated code in tests

For mozilla-mobile#16900: cleaned up NavGraphTestRule for finished test

For mozilla-mobile#16900: had to revert an accidentally edited file

For mozilla-mobile#16900: rebased master
MarcLeclair pushed a commit to MarcLeclair/fenix that referenced this issue Apr 13, 2021
This is composed of squash commits, the original messages can be found below:

-> DisableNavGraphProviderAssertionRule + kdoc.

Use test rule in RobolectricApplication.

Fix failing CrashReporterControllerTest

Fix blame by -> navigate in tests.

This commit was generated by the following commands only:
```
find app/src/test -type f -exec sed -i '' "/import org.mozilla.fenix.ext.navigateBlockingForAsyncNavGraph/d" {} \;
find app/src/test -type f -exec sed -i "" "s/navigateBlockingForAsyncNavGraph/navigate/g" {} \;
git checkout app/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
```

Fix various blame

This is expected to be squashed into the first commit so, if so, it'd
fix the blame.

Move test rule to helpers pkg.

add missing license header

Add import change I missed

fix unused imports

Replace robolectricTestrunner with test rule.

Improve navGraphProvider docs

Remove unnecessary rule as defined by robolectric.

add clarifying comment to robolectric

remove unnecessary space
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Apr 13, 2021
… fixes

3 squash commits:
 *Changed violation message and fixed the lint rule for MozillaNavigateCheck
 *Added suppression to NavController.kt
 *Fixed detekt violations
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Apr 13, 2021
For mozilla-mobile#16900: removed nav graph from xml

For mozilla-mobile#16900: inflate navGraph programatically

For mozilla-mobile#16900: Made NavGraph inflation asynchronous

For mozilla-mobile#16900: Changed to block with runBlocking

For mozilla-mobile#16900: Refactored blocking call into a function

For 16900: NavGraph inflation is now async

We now attach the nav graph (or check if its attached) on every nav call ( an extension function for NavController).
This is done by checking the value of the job stored in PerfNavController.map which keeps track of the job with the NavController as a Key.
If the job hasn't been completed, it will block the main thread until the job is done. The job itself is responsible for attaching the navgraph
to the navcontroller (and the inflation of the latter too)

For 16900: rebased upstream master

For 16900: Rebase on master

For mozilla-mobile#16900: Fixed Async Navgraph navigation per review comments.

1)The Asynchronous method is now found in NavGraphProvider.kt. It creates a job on the IO dispatcher
2)The Job is tracked through a WeakHashMap from Controller --> NavGraph
3)The Coroutine scope doesn't use MainScope() anymore
4)The Coroutine is cancelled if the Activity is destroyed
5)The tests mockk the blockForNavGraphInflation method through the FenixReoboelectricTestApplication instead of calling the mock every setup()

For mozilla-mobile#16900: inflateNavGraphAsync now takes navController

For mozilla-mobile#16900: Pass lifecycleScope to NavGraphProvider

For mozilla-mobile#16900: removed unused mock

For mozilla-mobile#16900: Added linter rules for navigate calls

We need linting rules to make sure no one calls the NavController.navigate() methods

For mozilla-mobile#16900: Added TestRule to help abstract the mocks in the code

For 16900: Fix linting problems

For mozilla-mobile#16900: Cleaned duplicated code in tests

For mozilla-mobile#16900: cleaned up NavGraphTestRule for finished test

For mozilla-mobile#16900: had to revert an accidentally edited file

For mozilla-mobile#16900: rebased master
MarcLeclair pushed a commit to MarcLeclair/fenix that referenced this issue Apr 13, 2021
This is composed of squash commits, the original messages can be found below:

-> DisableNavGraphProviderAssertionRule + kdoc.

Use test rule in RobolectricApplication.

Fix failing CrashReporterControllerTest

Fix blame by -> navigate in tests.

This commit was generated by the following commands only:
```
find app/src/test -type f -exec sed -i '' "/import org.mozilla.fenix.ext.navigateBlockingForAsyncNavGraph/d" {} \;
find app/src/test -type f -exec sed -i "" "s/navigateBlockingForAsyncNavGraph/navigate/g" {} \;
git checkout app/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
```

Fix various blame

This is expected to be squashed into the first commit so, if so, it'd
fix the blame.

Move test rule to helpers pkg.

add missing license header

Add import change I missed

fix unused imports

Replace robolectricTestrunner with test rule.

Improve navGraphProvider docs

Remove unnecessary rule as defined by robolectric.

add clarifying comment to robolectric

remove unnecessary space
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Apr 13, 2021
… fixes

3 squash commits:
 *Changed violation message and fixed the lint rule for MozillaNavigateCheck
 *Added suppression to NavController.kt
 *Fixed detekt violations
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Apr 13, 2021
For mozilla-mobile#16900: removed nav graph from xml

For mozilla-mobile#16900: inflate navGraph programatically

For mozilla-mobile#16900: Made NavGraph inflation asynchronous

For mozilla-mobile#16900: Changed to block with runBlocking

For mozilla-mobile#16900: Refactored blocking call into a function

For 16900: NavGraph inflation is now async

We now attach the nav graph (or check if its attached) on every nav call ( an extension function for NavController).
This is done by checking the value of the job stored in PerfNavController.map which keeps track of the job with the NavController as a Key.
If the job hasn't been completed, it will block the main thread until the job is done. The job itself is responsible for attaching the navgraph
to the navcontroller (and the inflation of the latter too)

For 16900: rebased upstream master

For 16900: Rebase on master

For mozilla-mobile#16900: Fixed Async Navgraph navigation per review comments.

1)The Asynchronous method is now found in NavGraphProvider.kt. It creates a job on the IO dispatcher
2)The Job is tracked through a WeakHashMap from Controller --> NavGraph
3)The Coroutine scope doesn't use MainScope() anymore
4)The Coroutine is cancelled if the Activity is destroyed
5)The tests mockk the blockForNavGraphInflation method through the FenixReoboelectricTestApplication instead of calling the mock every setup()

For mozilla-mobile#16900: inflateNavGraphAsync now takes navController

For mozilla-mobile#16900: Pass lifecycleScope to NavGraphProvider

For mozilla-mobile#16900: removed unused mock

For mozilla-mobile#16900: Added linter rules for navigate calls

We need linting rules to make sure no one calls the NavController.navigate() methods

For mozilla-mobile#16900: Added TestRule to help abstract the mocks in the code

For 16900: Fix linting problems

For mozilla-mobile#16900: Cleaned duplicated code in tests

For mozilla-mobile#16900: cleaned up NavGraphTestRule for finished test

For mozilla-mobile#16900: had to revert an accidentally edited file

For mozilla-mobile#16900: rebased master
MarcLeclair pushed a commit to MarcLeclair/fenix that referenced this issue Apr 13, 2021
This is composed of squash commits, the original messages can be found below:

-> DisableNavGraphProviderAssertionRule + kdoc.

Use test rule in RobolectricApplication.

Fix failing CrashReporterControllerTest

Fix blame by -> navigate in tests.

This commit was generated by the following commands only:
```
find app/src/test -type f -exec sed -i '' "/import org.mozilla.fenix.ext.navigateBlockingForAsyncNavGraph/d" {} \;
find app/src/test -type f -exec sed -i "" "s/navigateBlockingForAsyncNavGraph/navigate/g" {} \;
git checkout app/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
```

Fix various blame

This is expected to be squashed into the first commit so, if so, it'd
fix the blame.

Move test rule to helpers pkg.

add missing license header

Add import change I missed

fix unused imports

Replace robolectricTestrunner with test rule.

Improve navGraphProvider docs

Remove unnecessary rule as defined by robolectric.

add clarifying comment to robolectric

remove unnecessary space
MarcLeclair added a commit to MarcLeclair/fenix that referenced this issue Apr 13, 2021
… fixes

3 squash commits:
 *Changed violation message and fixed the lint rule for MozillaNavigateCheck
 *Added suppression to NavController.kt
 *Fixed detekt violations
MarcLeclair added a commit that referenced this issue Apr 14, 2021
* For #16900: implement async navgraph inflation

For #16900: removed nav graph from xml

For #16900: inflate navGraph programatically

For #16900: Made NavGraph inflation asynchronous

For #16900: Changed to block with runBlocking

For #16900: Refactored blocking call into a function

For 16900: NavGraph inflation is now async

We now attach the nav graph (or check if its attached) on every nav call ( an extension function for NavController).
This is done by checking the value of the job stored in PerfNavController.map which keeps track of the job with the NavController as a Key.
If the job hasn't been completed, it will block the main thread until the job is done. The job itself is responsible for attaching the navgraph
to the navcontroller (and the inflation of the latter too)

For 16900: rebased upstream master

For 16900: Rebase on master

For #16900: Fixed Async Navgraph navigation per review comments.

1)The Asynchronous method is now found in NavGraphProvider.kt. It creates a job on the IO dispatcher
2)The Job is tracked through a WeakHashMap from Controller --> NavGraph
3)The Coroutine scope doesn't use MainScope() anymore
4)The Coroutine is cancelled if the Activity is destroyed
5)The tests mockk the blockForNavGraphInflation method through the FenixReoboelectricTestApplication instead of calling the mock every setup()

For #16900: inflateNavGraphAsync now takes navController

For #16900: Pass lifecycleScope to NavGraphProvider

For #16900: removed unused mock

For #16900: Added linter rules for navigate calls

We need linting rules to make sure no one calls the NavController.navigate() methods

For #16900: Added TestRule to help abstract the mocks in the code

For 16900: Fix linting problems

For #16900: Cleaned duplicated code in tests

For #16900: cleaned up NavGraphTestRule for finished test

For #16900: had to revert an accidentally edited file

For #16900: rebased master

* For #16900: Review nits for async navgraph

This is composed of squash commits, the original messages can be found below:

-> DisableNavGraphProviderAssertionRule + kdoc.

Use test rule in RobolectricApplication.

Fix failing CrashReporterControllerTest

Fix blame by -> navigate in tests.

This commit was generated by the following commands only:
```
find app/src/test -type f -exec sed -i '' "/import org.mozilla.fenix.ext.navigateBlockingForAsyncNavGraph/d" {} \;
find app/src/test -type f -exec sed -i "" "s/navigateBlockingForAsyncNavGraph/navigate/g" {} \;
git checkout app/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
```

Fix various blame

This is expected to be squashed into the first commit so, if so, it'd
fix the blame.

Move test rule to helpers pkg.

add missing license header

Add import change I missed

fix unused imports

Replace robolectricTestrunner with test rule.

Improve navGraphProvider docs

Remove unnecessary rule as defined by robolectric.

add clarifying comment to robolectric

remove unnecessary space

* For #16900: nit fixes for MozillaNavigateCheck and lint fixes

3 squash commits:
 *Changed violation message and fixed the lint rule for MozillaNavigateCheck
 *Added suppression to NavController.kt
 *Fixed detekt violations

* For 16900: Fixed failing tests

Co-authored-by: Michael Comella <michael.l.comella@gmail.com>
@MarcLeclair MarcLeclair added the eng:qa:needed QA Needed label Apr 14, 2021
@MarcLeclair
Copy link
Contributor Author

QA needed: This patch changes how we load our navigation component ( just asynchronously). So I think for testing, it should just be general navigation testing (i.e: navigating from the widget / to settings, etc...)

@MarcLeclair MarcLeclair moved this from In progress to Done in Performance, front-end roadmap Apr 14, 2021
@abodea
Copy link
Member

abodea commented Apr 15, 2021

Verified as fixed on the latest Nightly 4/15 with Google Pixel 4 XL (11), Samsung Galaxy S7 (7), Nokia 2.4 (10).
Note that the general navigation was smooth and fast, and I didn't encounter any issues.

@abodea abodea closed this as completed Apr 15, 2021
@abodea abodea added eng:qa:verified QA Verified and removed eng:qa:needed QA Needed labels Apr 15, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
eng:qa:verified QA Verified performance Possible performance wins
Development

No branches or pull requests

4 participants