Mobile/GeckoView: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
No edit summary
(Add bug lists)
Line 42: Line 42:


The Gecko-related code for Focus lives in [https://github.com/mozilla-mobile/focus-android/blob/90bf62d89919d5ae2d8bd95954491264dcbe1bba/app/src/gecko/java/org/mozilla/focus/web/WebViewProvider.java WebViewProvider.java]
The Gecko-related code for Focus lives in [https://github.com/mozilla-mobile/focus-android/blob/90bf62d89919d5ae2d8bd95954491264dcbe1bba/app/src/gecko/java/org/mozilla/focus/web/WebViewProvider.java WebViewProvider.java]
== Bugs ==
<bugzilla>
{
  "summary": "geckoview",
  "resolution": "---",
  "include_fields": "id, component, summary, keywords, assigned_to",
  "order": "priority"
}
</bugzilla>
<bugzilla>
{
  "status_whiteboard": "[geckoview",
  "resolution": "---",
  "include_fields": "id, priority, summary, keywords, assigned_to",
  "order": "priority"
}
</bugzilla>

Revision as of 01:46, 25 January 2018

What is GeckoView

GeckoView is an Android library project that allows third-party developers to use Gecko as an Android View in their own applications. GeckoView is similar to Android's built in WebView, but it is not a drop in replacement for WebView.

Note that GeckoView is NOT ready to be used in a production environment. It is currently possible to load webpages, but that's about it. See bug 1322573.

Using GeckoView

  1. Download a recent GeckoView AAR from treeherder (mozilla-central tree). The AAR is available from the 'Android API15+ Gradle opt' job under the 'Bg' symbol. After clicking that, there is a link to 'geckoview-0.0.1.aar' in the bottom pane.
  2. Add the GeckoView AAR to your Gradle / Android Studio project. In Android Studio you can add the .aar as follows:
    1. Move the geckoview aar to your project's 'app/libs' folder.
    2. Use the 'New Module' option under the 'File' menu.
    3. Import the .aar file.
    4. Add the new GeckoView AAR module as a dependency to the application.

You can now use GeckoView your app by including the following in a layout XML file:

<org.mozilla.gecko.GeckoView
  android:id="@+id/geckoview"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content" />

You can then load a page in your code with:

// Find the GeckoView in our layout
GeckoView geckoView = (GeckoView) findViewById(R.id.geckoview);

// Attach the GeckoView to a new GeckoSession
GeckoSession session = new GeckoSession();
geckoView.setSession(session);

// Load a URL
session.loadUri("http://mozilla.com");

Example App

Firefox Focus has a build variant that uses Gecko. To build, check out the Focus code from https://github.com/mozilla-mobile/focus-android and follow the instructions. The only difference is you need to select one of the Gecko build variants from the Android Studio 'Build' menu.

The Gecko-related code for Focus lives in WebViewProvider.java

Bugs

Full Query
ID Component Summary Keywords Assigned to
1917038 General Prototype the dynamic toolbar of GeckoView Example use scroll data Petru-Mugurel Lingurar [:petru]
1922911 General GeckoView doesn't support dynamic feature delivery Eugene
1926314 General Measure impact of URL Classifier on geckoview startup Andrew Creskey [:acreskey]
1963046 General Allow to create a new geckoview tab in a specific user context Makoto Kato [:m_kato]
1741717 Gecko Profiler Content process is missing in geckoview_example (fenix?) unless I load another page (allrecipes.com)
1759727 General Add documentation for how to produce Android GeckoView universal (fat) AAR s locally
1762032 General GeckoView does not support handling notifications from a stopped state
1782929 General GeckoView sends invalid element position to Autofill framework if element is in <iframe>
1792899 Crash Reporting Submit GeckoView crashes with EXTRA_CRASH_BACKGROUND == true automatically
1796595 Extensions Add API support for bookmarks extension in GeckoView
1807336 Performance Identify why fenix is ~100ms slower than GeckoView Example on cold page load
1810514 General setInterval() and setTimeout() timers not running if the Geckoview is backgrounded on Android
1858130 General this.window.moduleManager is undefined in GeckoViewActorParent
1883349 Raptor Fix shutdown crashes in Geckoview in bild-de test
1889621 Networking: HTTP A repeating 1h "nsHttpConnectionMgr" timer fires while GeckoView example is completely idle perf:resource-use
1891112 Mozbase [mozrunner] Missing GeckoView config file for application arguments and environment variables prevents Marionette to be enabled for Fenix
1896177 General Add the ability to build GeckoView-example as non-debuggable
1907023 General Create RFC for Zygote Preload API usage in GeckoView Kaya [:kaya]
1936848 Performance Change mobile default job title from geckoview to fenix
1960712 DOM: Navigation Loading geckoview.xhtml goes through redirect machinery - can we eliminate the redirect?
1965531 General GeckoView `gv-junit` intermittent rate/orange factor is very high Ted Campbell [:tcampbell]
1966069 Networking Consider increasing the priority of the runnables involved in the loading of geckoview.xhtml
1969818 General [Crash Reporter] Fenix content process always crash when GeckoView is isolated process build
1973715 General Should exclude items annotated with `@ExperimentalGeckoViewApi` from GeckoView api-linter
1978648 WebExtensions java.lang.Exception: No listener for GeckoView:WebExtension:EnsureBuiltIn – Could not install browser-icons extension William Durand [:willdurand]
1988217 General org.mozilla.geckoview.GeckoEditable$2.run - Input dispatching timed out Makoto Kato [:m_kato]
2005190 Form Autofill Refactor GeckoViewAutocomplete Interface to Support Relay Integrations Dimi Lee [:dimi][OOO 19.Dec - 04.Jan]
1444135 General Figure out downloadable content in GeckoView
1446575 Gecko Profiler [meta] Remote profiling for GeckoView milestone 1.1 meta
1483141 General Verify that GeckoViewContent only reacts to top level events when restoring state
1500538 Media Find the media element from context menu event dispatched from video controls in GeckoView Makoto Kato [:m_kato]
1501574 General Run geckoview-junit tests on Android x86_64
1543776 Performance: Navigation [meta] 5+ second delays seen while loading www.allrecipes.com on geckoview_example meta, perf:pageload
1544641 DOM: Core & HTML WPT on Geckoview frequently crashes in /html/webappapis/dynamic-markup-insertion/opening-the-input-stream/tasks.window.js.ini
1544660 DOM: Core & HTML Support preventScroll for element.focus on GeckoView
1550199 General Create tests for GeckoView CrashHandler
1561634 General Verify that GeckoView delivers Punycode URLs when necessary
1570693 General Make --jsdebugger and --wait-for-jsdebugger work in GeckoView consuming Apps
1584400 General Remove support for configuring GeckoView via `extras`
1617971 General Package relevant remote settings dumps for ETP URL classifier for GeckoView
1630775 General GeckoView should react to onVisibilityChanged
1660102 General [meta] seccomp-bpf in GeckoView meta
1661549 General Enable test_fullscreen-api.html on GeckoView
1668902 Password Manager Investigate re-enabling passwordmgr mochitest-plain suite under GeckoView.
1677190 General (SHIP) Enable Session Restore and Session History In Parent in GeckoView webcompat:platform-bug Kaya [:kaya]
1678112 Raptor Figure out what happened to geckoview on mozilla-central from 11-14 to 11-17
1699988 geckodriver GeckoView config file on Android is not deleted when application is force-stopped Matthew Gaudet (he/him) [:mgaudet]
1700768 mozperftest Have mozperftest try pushes use the geckoview_example binary built from the revision
917866 General GeckoView doesn't support navigator.registerProtocolHandler
1035417 General GeckoView Cookie API
1291380 General [geckoview] Document and improve Gecko logging controls in GeckoView
1316220 General [geckoview] Split o.m.g.annotations into GeckoView and Fennec parts
1444096 General Spurious segfault when debugging Fennec/GeckoView
1444900 Gecko Profiler Support startup and restart profiling for Fennec/geckoview
1445285 General Animating GeckoView
1447850 General Move Gamepad support from GeckoView to GeckoSession.
1449058 IME When GeckoView loses focus it should ensure Gecko input fields no longer have focus.
1454474 General [meta] Nimbledroid page load performance difference between Webview and Geckoview meta
1454477 General [meta] Investigate progress bar behavior difference between GeckoView and WebView meta
1454722 General Add about:geckoview or about:gecko
1468844 Extensions [meta] Add GeckoView support for WebExtensions meta
1472794 General Add GeckoView API to enable local symbolication for profiling
1475723 DOM: Core & HTML Geckoview and Fennec open select dropdown on tap of parent label; other browsers do not.
1481028 Media Intermittent org.mozilla.geckoview.test.PermissionDelegateTest#media | status -2 | application crashed [@ nsWindow::GeckoViewSupport::Open] intermittent-failure
1493232 General The GeckoView crash reporter fails to be triggered by native crashes not in Gecko
1495036 General Add vibration API support in GeckoView
1497997 General [meta] GeckoView performance telemetry metrics meta
1499396 General Add GeckoView tests for PromptDelegate and PermissionDelegate
1500131 General [meta] Stabilize GeckoView API v1.0 meta
1501202 General implementation of window.confirm on GeckoView
1502145 General [Geckoview] Kinto stuff taking lots of main thread time
1508299 Telemetry Decide on multi-store persistence for GeckoView
1508432 General Consider using `mozilla::Hash{Map, Set}` for GeckoView history
1508967 General [Meta] GeckoView Consuming Developer Ergonomics Improvements meta
1508977 General [Meta]Make GeckoView easier to mock meta
1508986 General [meta] Address build warnings for GeckoView meta
1509087 General [Meta] GeckoView Internal Developer Ergonomics Improvements meta
1510847 General Intermittent org.mozilla.geckoview.test.PermissionDelegateTest#geolocation | application crashed [@ mozilla::layers::CompositorOGL::Initialize(nsTString<char>*)] intermittent-failure
1512576 General Build a website app example for GeckoView
1518882 Raptor Enable raptor-unity-webgl (UGL) for ARM64 GeckoView on Google Pixel 2
1519124 about:debugging DevTools remote debugging shows GeckoView sessions that are closed
1519180 Android Studio and Gradle Integration Require Java 1.8 to build GeckoView/Firefox for Android
1524332 General Add GeckoView test for multi-locale functionality
1527617 General GeckoView: file:// URI triggers GeckoSession.ContentDelegate.onExternalResponse
1528509 General GeckoView state saving is under-tested
1529760 Lint and Formatting New linting checker/rule request for GeckoView CHANGELOG
1530967 General [meta] GeckoView: Add support for taking screenshot of full page web content meta [:owlish] 🦉 PST
1531797 General org.mozilla.geckoview.test.TextInputDelegateTest.inputConnection takes a long time to run
1538031 General about:memory cannot save memory reports on GeckoView
1539263 General [meta] GeckoView uses too much CPU while in background meta
1540076 General Add [Quit] menu to GeckoView example to get GeckoProfiler data
1540240 General |mach geckoview-junit| does not respect --deviceSerial
1541635 Telemetry Make nsITelemetryGeckoViewTesting more useful for Performance Testing in automation
1543355 General Intermittent Android 4.3 org.mozilla.geckoview.test.ContentDelegateTest#download | status -2 intermittent-failure, leave-open, regression
1543755 Extensions [meta] Support browser.tabs in GeckoView meta
1544169 General Intermittent org.mozilla.geckoview.test.HistoryDelegateTest#onHistoryStateChange | status -2 intermittent-failure, leave-open, regression
1544472 General Enable dom.vr.enabled and dom.vr.exeternal.enabled in Geckoview when VR context is set.
1544496 General geckoview gtest pushes libxul.so to application directory
1544637 DOM: Security WPT on Geckoview frequently crashes in various feature-policy tests
1544639 General WPT on Geckoview frequently crashes in various html/browsers tests
1544654 WebRTC: Signaling WPT on Geckoview frequently crashes in some webrtc tests Byron Campen [:bwc]
1545266 General [meta] GeckoView lifecycle mechanics meta
1545364 General Enable GeckoThread.onPause() handling in GeckoView?
1545496 General Switch geckoview.xhtml to geckoview.html
1547959 Mozbase [mozprofile] Not all user preferences are used for GeckoView based applications
1548876 General Make `mach mochitest --debug --app=org.mozilla.geckoview.test` wait for a debugger
1549943 General GeckoView cannot be transparent once HMTL has loaded
1550073 General [meta] GeckoView startup performance meta, perf
1550493 WebRTC: Signaling Some wpt are failing frequently (and now disabled) on geckoview
1552583 General Teach Mozilla buildhub2 to answer queries about GeckoView versions used in downstream consumer Apps
1553790 General GeckoView doesn't seem to support blob URIs in window.open
1554189 Media Intermittent org.mozilla.geckoview.test.MediaDelegateTest#testDeviceRecordingEventAudioAndVideo | status -2 intermittent-failure, leave-open, regression
1554277 Extensions Check process source for messages in GeckoView
1554309 General <org.mozilla.geckoview.GeckoView android:visibility="gone" /> Fails to render/create web-components. regression
1555094 Extensions GeckoView: browser.tabs.onUpdated support
1558156 Telemetry `about:telemetry` is exposed in GeckoView
1558285 Media bug1228601-video-rotated.html fails on geckoview intermittent-failure, regression
1558513 Layout: Text and Fonts Various text-related reftest failures on geckoview (x86-64 Android 7.0 emulator)
1558515 SVG Intermittent SVG object-fit reftest failures on geckoview (x86-64 Android 7.0 emulator)
1560309 DOM: Security [meta] Investigate missing Content Security infrastructure on GeckoView meta
1562267 Normandy Client [meta] Add Normandy support for GeckoView meta
1563277 Android [meta] Re-enable disabled WebExtension mochitests on GeckoView meta
1563334 web-platform-tests [meta] Increase web-platform-tests coverage on geckoview meta
1564516 Audio/Video: Playback Green up and re-enable wpt media-source tests skipped on geckoview leave-open
1564971 DOM: Networking Green up and re-enable wpt fetch tests skipped on geckoview
1564975 DOM: Performance APIs Green up and re-enable wpt *-timing tests skipped on geckoview
1565196 General [meta] Enable android:isolatedProcess on GeckoView meta
1565700 Android Enable check for "Test left extra windows or tabs:" in geckoview extension tests Rob Wu [:robwu]
1565740 General Expose elapsed page load time from the fulfilled request to GeckoViewProgress listeners Will Hawkins
1567115 General snakeyaml exception in GeckoView on Android 19 KitKat
1571851 mozglue GeckoView session crashes when you start recording a profile
1573688 General GeckoView does not update tracking protection lists
1574229 General Enable including native code in GeckoView tests
1576378 General GeckoView apps not showing "Please enter a number" popup message for invalid separater error on Polish locale
1577325 General Error: No message manager for GeckoView:OnLoadError:error in tests
1580999 Gecko Profiler Allow to profile Gecko/GeckoView `--target=i686` under Android x86/x86_64 emulator
1582838 General geckoview_example fails on arm emulator
1583343 General Incremental builds of GeckoView are slow
1585505 about:debugging Update GECKOVIEW_REFERENCE_BROWSER_BUILD.md document
1592004 Media Move audio focus handling back into GeckoView
1593085 General Improve background power usage in "raptor-scn-power-idle-bg-geckoview-%change-power pgo" test
1602523 General Add runtime settings to disable experiments in GeckoView
1604248 Performance: General [meta] Geckoview page load performance issues meta
1604522 Audio/Video Add dropped frames probes to GeckoView
1604657 General Run geckoview junit tests in Android Studio using the same profile in mach
1605923 General Add postal address hints for GeckoView
1606270 General "Getting Started with GeckoView" documentation shows some "{: .no_toc .text-delta }" formatting codes
1607210 Marionette Client and Harness Update mobile support of Marionette harness to support GeckoView
1608826 General [meta] Geckoview load initiation performance meta, perf:pageload
1609220 General [meta] geckoview error log spam meta
1609566 General Add Gecko profiler markers for consumer delegates invoked by GeckoView
1609682 General preload required content and parent process scripts at startup of GeckoView perf:pageload
1610050 General Consider using `navigator:browser` once again for GeckoView windows
1610822 General [Meta] Make GeckoView Fission Compatible meta [:owlish] 🦉 PST
1613227 General [meta] Reduce overhead of creating a new window on GeckoView meta
1617647 General Publish GeckoView documentation from release/beta branch
1618952 General Update GeckoView loadUri and reload telemetry to reflect the various load flags.
1619409 Graphics: WebRender [meta] WebRender issues that may alleviate the drawbacks from having one renderer per tab in GeckoView meta
1619414 Graphics: WebRender Minimize WR memory for background tabs in GeckoView
1619678 Audio/Video: Playback Geckoview asks for camera/mic permission when it shouldn't
1620296 Extensions Reduce duplication between Desktop's AddonManager and GeckoViewWebExtension
1623404 General Support |mach test| for GeckoView tests
1623518 General [meta] Script cache information from the content process is never written to disk in GeckoView (10-20ms startup penalty for uncached script loading) meta, perf:responsiveness Markus Stange [:mstange]
1629631 General Use MOZ_WIDGET_ANDROID instead of ANDROID for geckoview specific code
1630062 General Reenable test_bug260264.html mochitest on GeckoView regression
1630122 General GeckoView renders in 1080p on a 2160p display
1631020 about:debugging Determine if the current tab descriptor is selected when connected to GeckoView
1633507 about:debugging Make it easier for devs to tell Fennec/GeckoView/Fenix builds apart
1639635 Request Handling webNavigation transistionType link missing for subframe navigations triggered by a click event on GeckoView and Thunderbird
1641513 General "uncaught exception: undefined" in Messaging.jsm = logspam on GeckoView due to improper use of sendRequestForResult
1641900 General TV job on Android/GeckoView skips all extension tests, possibly because the test is registered twice
1643688 Extensions tabs.create on GeckoView can use cookieStoreId without the right permissions or preference regression
1643740 Extensions use userContextId in GeckoView
1644800 General GeckoView navigation shouldn’t break if the beforeunload prompt is not implemented
1644823 General Remove instances of non-inclusive language from the GeckoView code base
1644988 General Apps can't use WebRTC with GeckoView
1645181 Condprofile Conditioned profiles for Geckoview has some issues
1645198 Raptor Re-enable conditioned profiles on geckoview, fennec68, and fenix after they are fixed
1650080 Panning and Zooming Turn on apz.allow_zooming for Geckoview reftests
1650692 General Let GeckoView be used to decode SVG images
1654294 General Create list of required l10n resources for geckoview
1660867 General GeckoViewPushController returns failure code: 0x80004005 (NS_ERROR_FAILURE)
1661705 General NullPointerException when touching a GeckoView with GeckoSession released (getPanZoomController)
1669853 General Crash in GetIsParentWindowMainWidgetVisible when debugging on GeckoView
1672195 General Move ActivityDelegate from GeckoRuntime to GeckoView
1672747 Audio/Video [Meta] Audit media related telemetry to ensure it's collected on GeckoView as expected meta
1677862 General Remove unused GeckoViewLoginStorage.jsm
1679766 General setRotation() breaks GeckoView
1685242 General Make GeckoView Test runner's toolbar dynamic
1690404 General Lock prefs that GeckoView manipulates Gregory Pappas [:gregp]
1692578 General GeckoView doesn't handle subframe error pages
1693567 Extensions Extension code in GeckoView always runs even when no extensions are running
1694808 General Support |mach geckoview-junit --debug|
1700817 General Oculus rejects app with GeckoView because WebAuthnTokenManager uses Google Mobile Services APIs
1702612 General GeckoView Getting Started documentation doesn't accommodate the Stable channel very well
1704091 Gecko Profiler Add profiler start geckoview API to be able to capture very early part of startup profiling
1709722 Extensions GeckoViewActorChild touches BC.embedderElement, doesn't count popups as "content"
1715801 General Re-enable pbm portion of test test_ext_contentscript_context.js and test_ext_webRequest_incognito.js on GeckoView with https-first mode enabled
1725251 General [Meta] GeckoView Process Management for Fission meta
1725252 General Support BrowserContextGroup in GeckoView
1725258 General Fission: Partition GeckoView content processes into separate pools
1725506 General Android is confused/mistaken about XUL widget support: it ships XUL widget code but not CSS, and doesn't load any of it in geckoview
1726589 General Add a version of geckoview-junit with LeakCanary
1728533 General Touch events are offset on specific Samsung devices, in an app using GeckoView
1730026 General geckoview.js runs some global initializers repeatedly instead of once
1735099 General Add View.onProvideAutofillVirtualStructure geckoview-junit test
1740533 General Android Studio: Library source does not match the bytecode for class GeckoView
1741363 Mach Core ./mach ide vscode doesn't launch if there are GeckoView compile errors
1751278 geckodriver Using the "--profile" argument in "moz:firefoxOptions['args']" generates two profile entries in the geckoview config file regression
1751541 General GeckoView:StateUpdated:historychange seen before GeckoView:LocationChange
1752596 geckodriver Adding support for custom GeckoView application (Fenix, ...) preferences
1753467 General Integrate Glean with GeckoView's Java front-end
1761480 Marionette [Android] Add support for additional prompt types for GeckoView
1767602 General GeckoViewConsole.sys.mjs throws when handling console.trace calls
1769983 General Clear and disable "dom.push.serverUrl" pref in GeckoView about:config
1770971 PDF Viewer GeckoView Save to PDF/Print API Settings
1770985 General [meta] Implement GeckoView Metadata API meta
1786171 Media Exiting Fullscreen doesn't work on YouTube in GeckoViewExample (but not Fenix, Focus, or RB)
1790084 Add-ons Manager Enable SitePermsAddonProvider on GeckoView
1793510 General no-unused-vars is not enabled at the global scope for GeckoView's module files and xpcshell-tests
1795266 General Allow to set the position/index of new tabs in GeckoViewTabUtil.createNewTab
1810722 Marionette [wdspec] Run tests to install an add-on in GeckoView from the local file system
1820152 Android [meta] Extend WebExtensions telemetry to support GeckoView builds meta
1822621 General Crash in [@ java.lang.IllegalStateException: at org.mozilla.geckoview.GeckoSession$SelectionActionDelegate$Selection.execute(GeckoSession.java)] crash
1824775 General Add Documentation for Geckoview and Mochitests
1836457 General GeckoView fails to draw SVGs linear gradients
1840053 General Source maps broken for GeckoView if loaded from Android asset folder
1840768 General Crash in [@ mozilla::widget::GeckoViewSupport::Open] MOZ_RELEASE_ASSERT(domWindow) crash
1845559 General Add API to select the tab (window) in GeckoViewTabUtil
1847566 General Investigate How Focus is set in GeckoView Concerning `primary` Gecko Browser Attribute
1850308 General Crash in [@ java.lang.IllegalStateException: at org.mozilla.geckoview.GeckoResult.completeExceptionally(GeckoResult.java)] crash
1852156 WebExtensions Crash in [@ java.lang.IllegalStateException: at org.mozilla.geckoview.GeckoResult.completeExceptionally(GeckoResult.java)] crash Zac McKenney [:zmckenney]
1865661 General Sync up GeckoView cookie banners handling defaults with platform
1875454 Bootstrap Configuration mach bootstrap --no-system-changes --application-choice "GeckoView/Firefox for Android" should install SDK/NDK
1880856 Extensions Enable extensions process unconditionally in GeckoView
1891111 geckodriver Remove usage of intent arguments when starting GeckoView applications on Android JL
1903680 General Change synthesizeNativeTouchPoint to run through OS (outside of GeckoView) not just invoking a GeckoView API as if it comes from OS
1905040 Form Autofill Calling EnablePreview during formautofill field identification causes the GeckoView testTextEntry test to fail.
1905707 Translations Consider moving `GeckoView:Translations:ModelInformation` calculation logic to Toolkit
1907048 Audio/Video Please enable the VP9 codec by default in GeckoView
1908844 Extensions GeckoViewTabBridge.createNewTab should use browser-delayed-startup-finished instaed of geckoview-window-created Makoto Kato [:m_kato]
1914765 Extensions "GeckoRuntime is shutting down" Crash in [@ java.lang.RuntimeException: at org.mozilla.geckoview.WebExtension$Download$$ExternalSyntheticLambda0.onShutdown(R8$$SyntheticClass:5)] crash
1917589 PDF Viewer pdfjs.init is called with an undefined this._isNewProfile on GeckoView regression
1918722 Data Sanitization GeckoView clear site data doesn't reflect reality. Emilio Cobos Álvarez [:emilio]
1920504 General Create Documentation on GeckoView Prefs
1921212 Data Sanitization PushNotificationsCleaner does not work for GeckoView / Fenix
1931060 General Adjust OOM Score in `GeckoViewTest` in `waitUntilContentProcessPriority`
1934870 Gecko Profiler Update the profiler android-components and geckoview APIs to have clearer "stopProfiler" APIs
1935690 WebExtensions Consider refactoring how permissions and origins are passed from Gecko to GeckoView for install, updates and optional permissions prompts
1936390 General Consider renaming `android-format` to `geckoview-format` good-first-bug
1945336 General junit.Assert.assertThat() doesn't work for geckoview tests. good-first-bug
1945806 DOM: Security Add geckoview-junit test new for 'originalInput' Geckoview field Malte Jürgens [:maltejur]
1948994 General Check GeckoView Kotlin linter and make it more strict
1948997 General @AssertCalled doesn't quite work in GeckoView
1949448 General Update GeckoView Consumer Documentation
1951985 General GeckoView does not respect the distinction between "user" and "default" prefs when they are set through RuntimeSettings
1960748 General Re-enable low memory detection in Android/GeckoView tests
1968746 Widget Possible MOZ_RELEASE_ASSERT(domWindow) for GeckoViewOpenWindow in nsWindow.mm
1970676 General geckoview example cant process more than 1 file upload.
1971850 General GeckoView public functions do not have a linter to require comments
1973756 General Reduce merge collisions on CHANGELOG.md in GeckoView
1973999 General [GeckoView] PreferencesTest may be setting preferences outside its scope
1976511 Data Sanitization Remove deprecated geckoview API ClearFlags.NETWORK_CACHE and ClearFlags.IMAGE_CACHE
1980457 General Run ktlint format on GeckoView junit test files and enforce ktlint rules
1980870 Audio/Video: Playback AndroidGetAudioOutputSampleRate and AndroidGetAudioOutputFramesPerBuffer don't get system value on GeckoView's isolated process
1990745 Agent Permissions.set should handle geckoViewSessionContextId to use ScriptSecurityManager.principalWithOA
1997030 General Expose enhanced page state to geckoview instances
1998311 IME Stop invoking multiple `GeckoView:ZoomToInput`s when the software keyboard is shown
2000363 General Remove unused geckoview.shopping.mock_test_response pref good-first-bug
2000364 General Remove OpenH264 prefs that don't do anything in GeckoView good-first-bug
1746362 Audio/Video: Playback Crash when playing Ogg theora on local geckoview_example build John Lin [:jhlin][:jolin]
1803207 General Investigate and catalog omni.ja contents in GeckoView
1966037 DOM: Security ContextualIdentityService.closeContainerTabs works on GeckoView Makoto Kato [:m_kato]
1605789 Telemetry TelemetryGeckoViewFixture.PersistScalars triggers crash at null crash, testcase
1322578 General [geckoview] Consider adding a shim that emulates an Android WebView
1366609 General [geckoview] HTML chrome
1437983 General [meta] GeckoView compatibility issues with Chromium's WebView API and functionality meta
1449202 General Remote debugging doesnt work with multiple GeckoViews
1500507 Audio/Video: Playback Don't always construct videocontrols UA Widget in Fennec/GeckoView
1503481 General Cache visited URLs more efficiently in `GeckoViewHistory`
1519197 Safe Browsing Add 1st Party Support for AdBlock Plus-style blocklists in Gecko/GeckoView
1521744 General Crash in java.lang.IllegalStateException at org.mozilla.geckoview.GeckoRuntime.create
1524826 General Intermittent org.mozilla.geckoview.test.PromptDelegateTest#popupTestAllow | status -2 intermittent-failure
1531377 Extensions Intermittent org.mozilla.geckoview.test.WebExtensionTest#badLocationXpi | status -2 | application crashed [@ mozilla::MediaStreamGraphImpl::ReevaluateInputDevice()] intermittent-failure, regression
1550179 General Make GeckoView a service so apps don't need to bundle GeckoView in their APKs
1555656 Media Intermittent org.mozilla.geckoview.test.MediaDelegateTest#testDeviceRecordingEventAudio | status -2 intermittent-failure, leave-open, regression
1563020 CSS Parsing and Computation WebRender on Geckoview crashtest failure in layout/style/crashtests/1546255.html | application timed out after 370 seconds with no output
1564371 General Intermittent org.mozilla.geckoview.test.ContentDelegateTest#crashContent_tapAfterCrash | application crashed [@ mozilla::java::GeckoProcessManager::Start(mozilla::jni::StringParam const&, mozilla::jni::Ref<mozilla::jni::TypedObject<_jobjectArray*> intermittent-failure, regression
1564373 General Permanent org.mozilla.geckoview.test.NavigationDelegateTest#trackingProtection | java.lang.AssertionError: onContentLoaded should be called specified number of times intermittent-failure, regression
1564426 General Intermittent org.mozilla.geckoview.test.SelectionActionDelegateTest#multipleActions[#text] | single tracking bug intermittent-failure, intermittent-testcase, regression
1566689 General Intermittent org.mozilla.geckoview.test.TextInputDelegateTest#restartInput_temporaryBlur[#<random>] | single tracking bug intermittent-failure, intermittent-testcase, regression
1580223 General Intermittent org.mozilla.geckoview.test.ContentBlockingControllerTest#trackingProtectionException | single tracking bug intermittent-failure, intermittent-testcase, leave-open, regression
1586948 Android Studio and Gradle Integration Fold m/a/gradle/**.gradle into m/a/geckoview/build.grdale
1599189 General Add troubleshooting tips to GeckoView docs
1607766 Extensions Intermittent org.mozilla.geckoview.test.ExtensionActionTest <test name> | single tracking bug intermittent-failure, intermittent-testcase
1610763 General GeckoView fails to build when not connected to the internet
1628579 Extensions Intermittent org.mozilla.geckoview.test.ExtensionActionTest#disableTest[#browserAction] | org.mozilla.geckoview.test.util.UiThreadUtils$TimeoutException: Timed out after 30000ms intermittent-failure
1635909 General Intermittent org.mozilla.geckoview.test.TextInputDelegateTest#inputConnection_getTextBeforeAfterCursor[#contenteditable] | single tracking bug intermittent-failure, intermittent-testcase
1636062 General Intermittent org.mozilla.geckoview.test.HistoryDelegateTest#onHistoryStateChangeSavingState | single tracking bug assertion, intermittent-failure, intermittent-testcase
1643590 General Intermittent org.mozilla.geckoview.test.TextInputDelegateTest#inputConnection_getTextBeforeAfterCursor[#designmode] | single tracking bug intermittent-failure, intermittent-testcase
1663252 General Intermittent org.mozilla.geckoview.test.TextInputDelegateTest#restartInput | single tracking bug assertion, intermittent-failure, intermittent-testcase
1676523 Preferences Consider unifying Toolkit and GeckoView's about:config
1677151 Extensions Intermittent org.mozilla.geckoview.test.WebExtensionTest#backgroundPortDisconnect | single tracking bug intermittent-failure, intermittent-testcase
1679779 Media Intermittent org.mozilla.geckoview.test.MediaSessionTest#defaultMetadataPlayback | org.mozilla.geckoview.test.util.UiThreadUtils$TimeoutException: Timed out after 30000ms intermittent-failure
1681261 General Intermittent org.mozilla.geckoview.test.TextInputDelegateTest#inputConnection_sendKeyEvent[#<random>] | single tracking bug assertion, intermittent-failure, intermittent-testcase, leave-open
1710053 Extensions Intermittent org.mozilla.geckoview.test.ExtensionActionTest#themeIcons[#pageAction] | single tracking bug intermittent-failure, intermittent-testcase
1713604 Android Studio and Gradle Integration ./mach run pushes both geckoview-withGeckoBinaries-debug-androidTest.apk and geckoview_example-withGeckoBinaries-debug.apk good-first-bug
1714625 Extensions Intermittent org.mozilla.geckoview.test.ExtensionActionTest#setIconSvg[#pageAction] | org.mozilla.geckoview.test.util.UiThreadUtils$TimeoutException: Timed out after 30000ms intermittent-failure
1719260 General Intermittent org.mozilla.geckoview.test.AutocompleteTest#addressSelectAndFillMultipleAddresses | org.mozilla.geckoview.test.util.UiThreadUtils$TimeoutException: Timed out after 30000ms intermittent-failure
1728380 Extensions Intermittent org.mozilla.geckoview.test.ExtensionActionTest#attachingDelegateTriggersDefaultUpdate[#pageAction] | org.mozilla.geckoview.test.util.UiThreadUtils$TimeoutException: Timed out after 30000ms intermittent-failure
1735044 Task Configuration Intermittent org.mozilla.geckoview.test.ScreenshotTest#screenshotToBitmap | single tracking bug assertion, intermittent-failure, intermittent-testcase
1763216 Extensions Extension works for couple of weeks then all of the sudden geckoview starts to report "Could not find extension"
1764219 General Intermittent org.mozilla.geckoview.test.DynamicToolbarTest#noGapAppearsBetweenBodyAndElementFullyCoveringBody | single tracking bug assertion, intermittent-failure, intermittent-testcase, leave-open, regression Hiroyuki Ikezoe (:hiro)
1766379 Extensions Intermittent org.mozilla.geckoview.test.ExtensionActionTest#setBadgeText[#browserAction] | org.mozilla.geckoview.test.util.UiThreadUtils$TimeoutException: Timed out after 30000ms intermittent-failure
1766654 Extensions Intermittent org.mozilla.geckoview.test.ExtensionActionTest#testPopupsCanCloseThemselves[#pageAction] | single tracking bug intermittent-failure, intermittent-testcase
1768489 General Intermittent org.mozilla.geckoview.test.OrientationDelegateTest#orientationUnlockByExitFullscreen | single tracking bug assertion, intermittent-failure, intermittent-testcase
1771366 Extensions Intermittent org.mozilla.geckoview.test.ExtensionActionTest#setIconError[#browserAction] | single tracking bug intermittent-failure, intermittent-testcase
1788451 General Intermittent org.mozilla.geckoview.test.ExtensionActionTest#setOverridenTitle[#pageAction] | org.mozilla.geckoview.test.util.UiThreadUtils$TimeoutException: Timed out after 30000ms intermittent-failure
1789286 General Intermittent org.mozilla.geckoview.test.GeolocationTest#accurateProviderSelected | org.mozilla.geckoview.test.rule.GeckoSessionTestRule$RejectedPromiseException: 3 intermittent-failure
1807512 General Intermittent org.mozilla.geckoview.test.AutocompleteTest#loginSelectDismiss | single tracking bug intermittent-failure, intermittent-testcase
1808064 General Intermittent org.mozilla.geckoview.test.AutocompleteTest#addressSelectDismiss/addressSelectDismiss | single tracking bugs intermittent-failure, intermittent-testcase
1808075 General Intermittent org.mozilla.geckoview.test.AutocompleteTest#creditCardSelectDismiss | single tracking bug intermittent-failure, intermittent-testcase
1815215 General Intermittent org.mozilla.geckoview.test.NavigationDelegateTest#purgeHistory | single tracking bug intermittent-failure, intermittent-testcase
1816423 General Intermittent org.mozilla.geckoview.test.ExtensionActionTest#setBadgeBackgroundColor[#pageAction] | org.mozilla.geckoview.test.util.UiThreadUtils$TimeoutException: Timed out after 30000ms intermittent-failure
1817354 Android Studio and Gradle Integration Intermittent [tier 2] Execution failed for task ':geckoview_example:checkWithGeckoBinariesDebugDuplicateClasses'. (B (B
1817370 General Intermittent org.mozilla.geckoview.test.ExtensionActionTest#enableTest[#pageAction] | single tracking bug intermittent-failure
1829615 General Intermittent org.mozilla.geckoview.test.SelectionActionDelegateTest#compareClientRect[#iframe-xorigin] | single tracking bug intermittent-failure, intermittent-testcase [:owlish] 🦉 PST
1829854 General Intermittent org.mozilla.geckoview.test.TextInputDelegateTest#inputConnection_bug1633621[#contenteditable] | single tracking bug intermittent-failure, intermittent-testcase
1830429 General Intermittent org.mozilla.geckoview.test.NavigationDelegateTest#goBackFromHistory | single tracking bug intermittent-failure, intermittent-testcase Makoto Kato [:m_kato]
1836196 General Intermittent org.mozilla.geckoview.test.TextInputDelegateTest#sendDummyKeyboardEvent[#textarea] | single tracking bug intermittent-failure, intermittent-testcase
1840607 General Intermittent org.mozilla.geckoview.test.ExtensionActionTest#setBadgeText[#pageAction] | single tracking bug intermittent-failure, intermittent-testcase
1846682 General Intermittent org.mozilla.geckoview.test.ExtensionActionTest#setBadgeBackgroundColor[#browserAction] | single tracking bug intermittent-failure, intermittent-testcase
1851042 General Intermittent org.mozilla.geckoview.test.TextInputDelegateTest#inputConnection_bug1633621[#textarea] | single tracking bug intermittent-failure, intermittent-testcase
1853614 General Intermittent org.mozilla.geckoview.test.ExtensionActionTest#testClickWhenPopupIsNotDefined[#browserAction] | single tracking bug intermittent-failure, intermittent-testcase
1855082 General Intermittent org.mozilla.geckoview.test.DynamicToolbarTest#showDynamicToolbar | single tracking bug intermittent-failure, intermittent-testcase, leave-open
1866457 General Intermittent org.mozilla.geckoview.test.ExtensionActionTest#testPopupMessaging[#pageAction] | single tracking bug intermittent-failure, intermittent-testcase
1868278 General Intermittent org.mozilla.geckoview.test.ExtensionActionTest#setOverridenTitle[#browserAction] | single tracking bug intermittent-failure, intermittent-testcase
1885909 General Intermittent org.mozilla.geckoview.test.TextInputDelegateTest#inputConnection_bug1633621[#input] | single tracking bug intermittent-failure, intermittent-testcase
1902103 General Intermittent org.mozilla.geckoview.test.GeolocationTest#jsContentRequestForLocation | single tracking bug intermittent-failure, intermittent-testcase
1907684 General Intermittent org.mozilla.geckoview.test.ExtensionActionTest#testClickWhenPopupIsNotDefined[#pageAction] | single tracking bug intermittent-failure, intermittent-testcase
1916019 Sandboxing Intermittent | runjunit.py | The previous test failed because of an error in the test harness | org.mozilla.geckoview.test.rule.TestHarnessException: org.mozilla.geckoview.test.util.UiThreadUtils$TimeoutException: Timed out after 30000ms intermittent-failure, intermittent-testcase
1920505 General JavaScript Error: "TypeError: can't access property 0, window.arguments is undefined" {file: "chrome://geckoview/content/geckoview.js" line: 52}
1921935 General Intermittent org.mozilla.geckoview.test.DynamicToolbarTest#hitTestOnPositionSticky | single tracking bug intermittent-failure, intermittent-testcase
1931750 Media Crash in [@ org.mozilla.geckoview.Image$ImageProcessingException: at org.mozilla.gecko.mozglue.GeckoLoader.nativeRun(GeckoLoader.java)] crash
1933307 General Intermittent org.mozilla.geckoview.test.MediaDelegateTest#testDeviceRecordingEventAudioAndVideo | single tracking bug intermittent-failure, intermittent-testcase
1943480 General Intermittent org.mozilla.geckoview.test.PanZoomControllerTest#compositorScrollDelegate | single tracking bug intermittent-failure, intermittent-testcase
1956913 General Intermittent org.mozilla.geckoview.test.PromptDelegateTest#fileMultipleTest | single tracking bug intermittent-failure, intermittent-testcase
1958025 General Intermittent org.mozilla.geckoview.test.WebExecutorOhttpTest#testOhttp | single tracking bug intermittent-failure, intermittent-testcase
1960820 General GeckoView crashes upon app start on Release mode
1961034 General GeckoView wpt-reftest logcat logs are 30% logspam from `TypeError: can't access property "nodePrincipal", this.contentDocument is null` and `TypeError: can't access property "title", this.contentDocument is null` good-next-bug
1961352 General Intermittent org.mozilla.geckoview.test.PromptDelegateTest#directoryTest | single tracking bug intermittent-failure, intermittent-testcase
1961358 General Intermittent org.mozilla.geckoview.test.PromptDelegateTest#colorTestWithDatalist | single tracking bug intermittent-failure, intermittent-testcase
1961940 General Intermittent org.mozilla.geckoview.test.PromptDelegateTest#fileTest | single tracking bug intermittent-failure, intermittent-testcase
1963986 General Intermittent org.mozilla.geckoview.test.GeckoSessionTestRuleTest#checkCookieBannerRuleForSession | single tracking bug intermittent-failure, intermittent-testcase
1974243 General :geckoview:apiCompatLintDebug TypeError: '<' not supported between instances of 'NoneType' and 'str'
1989690 General Intermittent org.mozilla.geckoview.test.DynamicToolbarTest#hitTestOnPositionStickyOnMainThread | single tracking bug intermittent-failure, intermittent-testcase
1990004 General Intermittent org.mozilla.geckoview.test.MediaDelegateXOriginTest#testDeviceRecordingEventAudioAndVideoInXOriginIframeNoAllow | single tracking bug intermittent-failure, intermittent-testcase
1991209 General Intermittent org.mozilla.geckoview.test.ExtensionActionTest#testPopupsCanCloseThemselves[#browserAction] | single tracking bug intermittent-failure, intermittent-testcase
1991507 General Intermittent org.mozilla.geckoview.test.ContentDelegateTest#stopHungProcessWaitThenStop | single tracking bug intermittent-failure, intermittent-testcase
1992702 General Intermittent org.mozilla.geckoview.test.AccessibilityTest#autoFill | single tracking bug intermittent-failure, intermittent-testcase
1993263 General Intermittent org.mozilla.geckoview.test.ExtensionActionTest#setIconSvg[#browserAction] | single tracking bug intermittent-failure, intermittent-testcase
1993445 General Intermittent org.mozilla.geckoview.test.ContentCrashTest#crashContentJava | single tracking bug intermittent-failure, intermittent-testcase, regression Makoto Kato [:m_kato]
1998569 General Intermittent org.mozilla.geckoview.test.GeckoViewTest#setActiveProcessPriorityTest | single tracking bug intermittent-failure, intermittent-testcase
1998616 General Intermittent org.mozilla.geckoview.test.InteractiveWidgetTest#bug1994311 | single tracking bug intermittent-failure, intermittent-testcase
2003910 General Intermittent org.mozilla.geckoview.test.AutocompleteTest#loginUsed | single tracking bug intermittent-failure, intermittent-testcase
2003984 General Intermittent org.mozilla.geckoview.test.AutocompleteTest#loginUpdateAccept | single tracking bug intermittent-failure, intermittent-testcase
2005665 General Intermittent org.mozilla.geckoview.test.NavigationDelegateTest#loadString | single tracking bug intermittent-failure, intermittent-testcase
1765375 Internationalization GeckoView handling of secondary OS languages leads to sites ignoring primary language
1778581 Build Documentation GeckoView » Mozilla Central Quick Start is redundant and outdated
1793148 General GeckoViewFetchClient: Can we detect that Gecko isn't properly initialized?
1793235 WebExtensions GeckoView Web Extension fails to connect to connect to Android application
1794052 General Prompt.confirm(id) is not working, no response in the GeckoView.
1795108 General Stop manually handling configChanges in GeckoView based apps.
1795130 Experimentation and Telemetry Capture geckoview version for Fenix baseline ping
1795419 General Fix GeckoViewFetchUnitTestCases unit tests
1795420 Browser Engine GeckoView - InputResultDetail syncronization issues
1804515 Firefox Source Docs: Content Add a note to the lldb setup instructions - Documentation issue on mobile/android/geckoview/contributor/native-debugging
1808987 General about:license and various other toolkit about: page rely on info-pages.css, which isn't packaged as part of GeckoView/Fenix
1809915 General [meta] GeckoView Print on Android meta
1810111 PDF Viewer Add support for printing PDFs in GeckoView
1826909 Try mach try fuzzy doesn't recognize GeckoView JUnit test path
1827938 General Overscroll effect in GeckoView
1835002 Task Configuration Expire geckoview-test_runner.apk and geckoview-test_runner.aab sooner
1853825 Media Add support for multiple active (media) tabs in GeckoView
1855809 CSS Parsing and Computation Investigate why `ServoStyleSet::GetPresContext()` == nullptr sometimes during `org.mozilla.geckoview.test.InputResultDetailTest#testTouchAction`
1861745 PDF Viewer Crash in [@ java.lang.NullPointerException: at org.mozilla.geckoview.GeckoSession.saveAsPdfByBrowsingContext(GeckoSession.java)] crash
1865635 General Need a way to get the gecko version for a geckoview-test-runner package
1880800 web-platform-tests [meta] Switch default package for GeckoView from TestRunner to Fenix meta
1882160 Android Studio and Gradle Integration Improve geckoview build times
1883248 General Need a solution to add a root certificate to GeckoView
1888979 General Consider adding a persistant preference option in GeckoView as a preference type
1906698 General Run tests in mobile/android/geckoview/src/test/java/org/mozilla/gecko/util/ in a different test suite
1906885 General [meta] GeckoView has many Android Studio Lints and Warnings meta
1918791 General Improve Testing Harness in GeckoView Tests for Changing GeckoRuntimeSettings for Runtime Level Tests
1919405 General Decide what to do with mobile/android/docs/geckoview/contributor/mc-quick-start.rst
1919868 General Integrate MOZ_LOG Usage into GeckoView / Fenix as a Development Tool
1921445 Firefox Source Docs: Content Documentation issue on mobile/android/geckoview/contributor/mc-quick-start
1926985 General "GeckoRuntime is shutting down" Crash in [@ java.lang.RuntimeException: at org.mozilla.geckoview.SessionFinder$$ExternalSyntheticLambda0.onShutdown(R8$$SyntheticClass:5)] crash, regression
1927140 Experimentation and Telemetry Improve Documentation on how to Set Prefs from GeckoView <--> AC <--> Fenix
1933528 Android Studio and Gradle Integration Vendor or toolchain Android dependencies to make it possible to build Geckoview without an internet connection (after bootstrapping)
1933569 Android Studio and Gradle Integration running an xpcshell test on a local geckoview build takes too long and eventually fails with an http3server error
1942196 General Crash in [@ java.lang.NegativeArraySizeException: at org.mozilla.geckoview.GeckoSession$SessionState.spliceSessionHistory(GeckoSession.java)] crash, leave-open, regression
1943421 Try Remove Galaxy A55 suites from android-geckoview preset
1947773 Android Studio and Gradle Integration Stop publishing GeckoView to local Maven repository and assembling example GeckoView projects in local builds Aaditya Dhingra [:adhingra]
1949986 General Add sudoedit-style command to mach for editing GeckoView config.yaml
1953988 Android Studio and Gradle Integration Fold `stage-package` into `android-archive-geckoview` tier and remove `android-stage-package` tier
1956152 Android Studio and Gradle Integration Build fenix in mach build instead of geckoview-example Aaditya Dhingra [:adhingra]
1956816 Translations Update test_geckoview_translations.html to use GleanTest.js
1958039 Performance Engineering [meta] Reduce time until GeckoViewSupport::Open during applink-startup meta
1958433 Performance Engineering [meta] Reduce time until geckoview.xhtml chrome-document-loaded notification during applink startup meta
1959674 General Clean up the SHIP-disabling code from GeckoView and Fenix/AC
1969159 Android Studio and Gradle Integration ./mach android install-geckoview_example fails for real devices
1970146 General Add functionality to clear cached directory in GeckoView Example
1971200 General test-info-all-tests.json produced by test-info-all taskcluster job could include Android Kotlin tests in GeckoView, Android Components, and Fenix supported by mach test
1981854 General Consider adding test annotations in GeckoView junit to avoid `sessionRule.env` Gates
1983196 General “About Firefox Focus”: Add Geckoview and operating system each with the corresponding version
1988129 Experimentation and Telemetry GeckoViewExperimentDelegateParent should also return nimbus.fml.yaml not just geckoview.fml.yaml
2001502 General GeckoViewProgress.sys.mjs: checkIdentity should use the nsIWebProgressListener state flags to determine if a certificate error was overridden
2005811 CSS Parsing and Computation Can we avoid getting font metrics for geckoview.xhtml?
1473195 Bulk Bug Edit Requests Move non-GeckoView bugs in Firefox for Android to P5 unless tagged for Softvision
1500607 Android Studio and Gradle Integration Simplify Fennec and GeckoView product flavors
1527689 Task Configuration Add a Taskcluster index for fetching geckoview_example
1529095 General Lingering java process after Fennec/GeckoView build consumes more than 1.5GB
1544621 web-platform-tests [meta] Web platform tests that frequently/always crash running on GeckoView meta
1555192 WebVR Implement Android and GeckoView support for PuppetVRSession
1556793 Mach Core Make it easy to avoid -purgecaches when launching org.mozilla.geckoview_example
1564977 DOM: Core & HTML Green up and re-enable wpt html/browsers tests skipped on geckoview
1564978 DOM: Core & HTML Green up and re-enable wpt html/semantics/embedded-content tests skipped on geckoview
1564981 Layout Green up and re-enable wpt css/css-backgrounds tests skipped on geckoview
1564984 CSS Parsing and Computation Green up and re-enable wpt css tests skipped on geckoview
1566161 web-platform-tests Run tests on Geckoview upstream for inclusion in wpt.fyi
1595724 Toolchains Intermittent Could not resolve all dependencies for configuration ':geckoview:withGeckoBinariesDebugRuntimeClasspath'.
1605358 Other GeckoView localization request
1606723 Normandy Client [meta] Hook up Normandy to GeckoView meta
1609505 Task Configuration GeckoView tests take too long to run for try builds requested by GeckoView developers
1614598 Release Automation Ship nightly Geckoview whenever Firefox nightly is shipped
1614601 Release Automation treat geckoview as a standalone product in gecko tree
1617632 Task Configuration Manifest information missing for geckoview-junit tasks
1619207 Try Selecting "geckoview-junit" doesn't seem to work in try chooser
1631080 IPC Canonical location for top-level IPC actors to notify GeckoView of actor destruction
1667131 Fuzzing [meta] Fuzzing GeckoView meta
1672750 Audio/Video: Playback MEDIA_DECODING_PROCESS_CRASH telemetry is not recorded on GeckoView
1672752 Audio/Video: Playback MEDIA_CODEC_USED telemetry is not recorded in GeckoView
1672753 Audio/Video: Playback MEDIA_DECODER_BACKEND_USED telemetry is not recorded on GeckoView
1672762 Audio/Video VIDEO*_PLAY_TIME_MS telemetry not recorded on GeckoView
1696302 DOM: Push Subscriptions Run Web Push mochitest on GeckoView
1731699 Task Configuration Enable GeckoView builds on Mac OS workers

447 Total; 447 Open (100%); 0 Resolved (0%); 0 Verified (0%);


Full Query
ID Priority Summary Keywords Assigned to
1997373 P1 Store original pref values for Fenix Gecko integration Olivia Hall [:olivia]
2003370 P1 Use and react to Gecko preferences stored values Olivia Hall [:olivia]
1485449 P1 [meta] wr-android meta
1901835 P1 Typing into search field on canadiantire.ca during pageload erases and rearranges keyboard input webcompat:platform-bug, webcompat:site-report Ted Campbell [:tcampbell]
1420369 P2 stylo: 6.21 - 6.54% remote-tsvg / remote-twitter (android-6-0-armv8-api16, android-7-1-armv8-api16) regression on push db56323cd08f4883e4824199b441a3141be655e5 (Thu Nov 23 2017) perf, regression Makoto Kato [:m_kato]
1427937 P2 audio context should release its wakelock when it's non-audible
1446575 P2 [meta] Remote profiling for GeckoView milestone 1.1 meta
1454752 P2 Add `GeckoRuntime.reduceMemoryUsage()`
1463402 P2 Implement Picture-in-Picture Web API dev-doc-needed, webcompat:platform-bug Jeff Muizelaar [:jrmuizel]
1483141 P2 Verify that GeckoViewContent only reacts to top level events when restoring state
1501574 P2 Run geckoview-junit tests on Android x86_64
1510450 P2 Show form validation errors parity-chrome, parity-safari, webcompat:platform-bug Makoto Kato [:m_kato]
1535985 P2 [Android] `<datalist>` HTML element should display autocompletion drop-down UI leave-open, webcompat:platform-bug Makoto Kato [:m_kato]
1544641 P2 WPT on Geckoview frequently crashes in /html/webappapis/dynamic-markup-insertion/opening-the-input-stream/tasks.window.js.ini
1560845 P2 Application crash ("Directory not thread-safe") while using input with type="file" in extension page crash
1561634 P2 Verify that GeckoView delivers Punycode URLs when necessary
1584400 P2 Remove support for configuring GeckoView via `extras`
1609959 P2 Cam & mic access denied when the mic is granted permission Makoto Kato [:m_kato]
1611468 P2 JUnit test failures due to content process crash are misreported
1613824 P2 Apple Newsroom page takes a long time to load (30 seconds) perf:pageload
1616635 P2 Disable or remove WebChannel support
1617971 P2 Package relevant remote settings dumps for ETP URL classifier for GeckoView
1620079 P2 Large amounts of time are spent in module import when starting Fenix (applink) perf:responsiveness
1626646 P2 Zooming in on Twitter causes page to scroll/fling up
1639280 P2 Unacceptable performance and memory consumption on Apart Posters VR experience. perf:responsiveness
1650814 P2 Reloading a data Uri returns an error
1660102 P2 [meta] seccomp-bpf in GeckoView meta
1661549 P2 Enable test_fullscreen-api.html on GeckoView
1662794 P2 Incomplete error page displayed if network cuts off mid page load
1673729 P2 [meta] Enable disabled gv-junit-fis Fission tests meta
1673953 P2 [gv-junit-fis] Run GeckoSessionTestRuleTest on Fission Makoto Kato [:m_kato]
1676104 P2 Make WebRequest and GeckoWebExecutor First-Party aware
1677190 P2 (SHIP) Enable Session Restore and Session History In Parent in GeckoView webcompat:platform-bug Kaya [:kaya]
1678425 P2 Memory leak in GeckoEditable.mListener Makoto Kato [:m_kato]
1687823 P2 [Bug] White screen displayed when minimizing Suggested logins menu on Android
1690037 P2 Provide a download API on onContextMenu
1694081 P2 Set "DIRECT" instead of crash by OOM in AndroidBridge::GetProxyForURI
1694192 P2 Inconsistent media link behavior depending on media type
1698178 P2 Ensure crash reports from isolated content processes work correctly.
1699723 P2 Catch SecurityException when calling startActivity with intent
1705672 P2 Cannot select text in some website Makoto Kato [:m_kato]
1709923 P2 [meta] Fix reftests for isolated process meta
1709948 P2 [meta] Fix mochitests for isolated process meta
1709960 P2 [meta] Fix web platform tests for isolated process meta
1709961 P2 [meta] Fix xpcshell tests for isolated process meta
1710940 P2 Crash event is not sent in isolated process Chris Martin [:cmartin]
1711091 P2 [Bug] HTML Required attribute breaks if first option has no `value` Makoto Kato [:m_kato]
1712756 P2 Explore the option of storing Media permissions on the GV
1724006 P2 [Bug]: button text in document being replaced with password Text
1734923 P2 Declarative onLoadRequest
1741290 P2 Filter protocols in GeckoSession.load
1746031 P2 "Storage_access" permission is not asked again if allowed once [:owlish] 🦉 PST
1748927 P2 GeckoSessionHandler.getDelegate can be called from any thread but is not thread safe
1749398 P2 onPromptDismiss is not always invoked on page navigation Makoto Kato [:m_kato]
1752594 P2 [meta] Tabs reload too often in Firefox for Android meta Kaya [:kaya]
1752637 P2 Investigate Battery/Ram saver feature on phones
1753223 P2 Decode URIs so that complex scripts display in the address bar similar to desktop's losslessDecodeURI function
1754617 P2 Add a version of junit similar to mochitest's xorigin-test
1762032 P2 GeckoView does not support handling notifications from a stopped state
1770987 P2 Implement Readerview mode [GV Metadata API]
1770989 P2 Implement Favicon delegate [GV Metadata API]
1770992 P2 Implement Preview image delegate [GV Metadata API] Jeff Boek [:boek]
1775144 P2 [Bug]: When editing text in a textbox, Firefox makes it absurdly difficult to place the cursor on a blank line Makoto Kato [:m_kato]
1777503 P2 Save login prompt should not be dismissed upon navigation Makoto Kato [:m_kato]
1782929 P2 GeckoView sends invalid element position to Autofill framework if element is in <iframe>
1802826 P2 Accessibility: Android zoom clicking incorrect elements access
1802843 P2 Crash in [@ mozilla::jni::Accessor::EndAccess<T>] crash
1804115 P2 kotlinx.coroutines.ChildHandleNode Crash in [@ java.lang.NoClassDefFoundError: at kotlinx.coroutines.JobSupport.attachChild] crash, leave-open, regression
1804377 P2 Crash in [@ java.lang.IllegalStateException: at androidx.navigation.NavController.popEntryFromBackStack(NavController.kt:180)] Attempted to pop Destination(org.mozilla.firefox:id/tabHistoryDialogFragment), which is not the top of the back stack crash, regression
1805286 P2 [meta] Investigate App size improvements meta Zac McKenney [:zmckenney]
1806212 P2 YouTube video turns unresponsive when putting the app in background while having the "Similar Videos" carousel.
1807072 P2 [Pull To Refresh] Avoid accidental refreshes by forcing a cooldown period after the last scroll gesture
1808755 P2 [meta] In browser printing meta
1809650 P2 Android junit test tries to install missing xpi from `resource` URL which trips "don't try to load non-existant files" checks.
1810514 P2 setInterval() and setTimeout() timers not running if the Geckoview is backgrounded on Android
1813728 P2 [Bug]: keyboard behaviour in input fields (e. g. search engines) Makoto Kato [:m_kato]
1826718 P2 Collect data about available system memory on Android Kaya [:kaya]
1827023 P2 Remove "full accessibility tree" setting in GeckoSessionSettings good-first-bug
1834130 P2 Fenix is starting foreground services while it is not in the foreground.
1841089 P2 Printing With Zoom on Android
1853078 P2 window.innerHeight is 0 in window.onload when page is opened in the background on Android
1859846 P2 Start off the GV browser docshell inactive - Tabs opened in the background but not switched to are considered active and waste power Kaya [:kaya]
1872429 P2 GeckoRuntime.onShutdown should propagate the exception cause information [:owlish] 🦉 PST
1889915 P2 Env var PUBLIC_STORAGE is not set in GPU process regression
1898597 P2 High CPU cost during scrolling from onScrollChange notifications
1908134 P2 Fix null pointer bug in `PrefWithoutDefault` good-first-bug
1908986 P2 Refetch language model information when app languages changes. leave-open
1969818 P2 [Crash Reporter] Fenix content process always crash when GeckoView is isolated process build
1973715 P2 Should exclude items annotated with `@ExperimentalGeckoViewApi` from GeckoView api-linter
1977950 P2 Investigate whether we can define both android:isolatedProcess on GeckoChildProcessServices leave-open Makoto Kato [:m_kato]
1983057 P2 Android 14 DragAndDropTest Failures Joel Maher ( :jmaher ) (UTC -8)
2000935 P2 [meta] Fisison and Ship Improvements meta
2001415 P2 Demo patch to demonstrate new pref setting mechanism
2006095 P2 Connect observer to react to Gecko preference changes Olivia Hall [:olivia]
2006390 P2 Document API levels needed for Isolated Process and App Zygote support Olivia Hall [:olivia]
1973999 P3 [GeckoView] PreferencesTest may be setting preferences outside its scope
1980870 P3 AndroidGetAudioOutputSampleRate and AndroidGetAudioOutputFramesPerBuffer don't get system value on GeckoView's isolated process
1987505 P3 Solve why GTest and cppunittests will sometimes go into a perma-fail state Joel Maher ( :jmaher ) (UTC -8)
1998836 P3 [3] Generate full screenshots of web pages
997779 P3 [Meta] Implement Web Manifest spec in Gecko dev-doc-needed, meta
1200570 P3 Make dom/crypto/test/test_indexedDB.html run on Android
1230176 P3 Weirdness at end of Fennec fling. Don't send duplicate DOM 'scroll' event for sub-pixel scrolling
1435665 P3 input type=button background-color should be rgb(240, 240, 240) on Android. Dennis Schubert [:denschub][OOO, back Jan 12]
1445285 P3 Animating GeckoView
1447850 P3 Move Gamepad support from GeckoView to GeckoSession.
1451720 P3 MaybeEnterJIT SIGSEGV crashes on Android/ARM64 (occasional)
1462000 P3 [meta] Safe Browsing API improvements meta
1465205 P3 Nested grid/flex layout is slow in mobile UI at http://www.wikia.com/fandom perf
1465939 P3 Put version, buildid and other useful information into GeckoRuntime
1483677 P3 Add historyUrl to GeckoSession.loadData
1489089 P3 Display glitch on IMDB when rotating between portrait and landscape
1498270 P3 Loading file:///sdcard/ doens't return a load error
1498485 P3 hubs.mozilla.com frame rate with an empty scene is too slow in FxR on Oculus Go perf:responsiveness
1499180 P3 Avoid first SIGSEGV in debugger in local developer builds
1501202 P3 implementation of window.confirm on GeckoView
1503676 P3 FxR crash in java.lang.NullPointerException: at org.mozilla.gecko.mozglue.GeckoLoader.nativeRun(Native Method) in MediaDrmJavaCallbacksSupport crash
1503957 P3 MediaElement.Delegate.onError() fails on Android
1506624 P3 Add a test for GeckoRuntimeSettings.webFontsEnabled() Makoto Kato [:m_kato]
1513207 P3 WebGL1: WEBGL_draw_buffers incorrectly available on Android OpenGL ES 3.x GPUs
1514447 P3 Consider removing TextComposition usages in widget/android Makoto Kato [:m_kato]
1515440 P3 Issue to PromptDelegate.FileCallback.confirm not handling URIs from content://com.android.providers
1515780 P3 Consider more aggressively throttling deviceorientation events perf:responsiveness
1516283 P3 Zoom isn't restored after exiting fullscreen if browser.ui.zoom.force-user-scalable = true
1516471 P3 Zoom location isn't restored after exiting fullscreen regression
1519124 P3 DevTools remote debugging shows GeckoView sessions that are closed
1519180 P3 Require Java 1.8 to build GeckoView/Firefox for Android
1525466 P3 Add GV API for battery settings (power-saving mode)
1530967 P3 [meta] GeckoView: Add support for taking screenshot of full page web content meta [:owlish] 🦉 PST
1531511 P3 Service Worker fetch requests during 'install' phase block fetch requests from main thread
1533271 P3 GV API to enable offline browsing mode
1533468 P3 Trucated "This site says" text in onAuthPrompt delegate for HTTP Basic Auth prompt
1538348 P3 [meta] Implement the |downloads| extension API meta
1538943 P3 Provide meta tag theme colour of content to browser apps for theming
1540192 P3 canvas.imageSmoothingEnabled = "true"; produces undesirable interpolation / banding
1544472 P3 Enable dom.vr.enabled and dom.vr.exeternal.enabled in Geckoview when VR context is set.
1544637 P3 WPT on Geckoview frequently crashes in various feature-policy tests
1544654 P3 WPT on Geckoview frequently crashes in some webrtc tests Byron Campen [:bwc]
1548962 P3 Use android-x86_64 to generate the profile for Android PGO builds
1554226 P3 Add new Safe Browsing categories.
1554313 P3 Classifier Update should wait for an user-idle period before initiating an update perf:pageload, perf:responsiveness
1554779 P3 Intermittent TEST-UNEXPECTED-TIMEOUT | runjunit.py | Timed out after 3000 seconds intermittent-failure, leave-open, regression
1555404 P3 [meta] Support dynamic TLS cipher suites meta
1557505 P3 ECPoint_mul/ec_points_mul take a lot of time on Arm32 perf, perf:pageload
1560309 P3 [meta] Investigate missing Content Security infrastructure on GeckoView meta
1561670 P3 Media playback pauses when a different media is played on a different session
1562267 P3 [meta] Add Normandy support for GeckoView meta
1565196 P3 [meta] Enable android:isolatedProcess on GeckoView meta
1572232 P3 Flush localStorage / sessionStorage when SessionStateAggregator is flushed.
1584659 P3 Android OpenGL assert when running in a mac x86 emulator regression
1593085 P3 Improve background power usage in "raptor-scn-power-idle-bg-geckoview-%change-power pgo" test
1605923 P3 Add postal address hints for GeckoView
1610050 P3 Consider using `navigator:browser` once again for GeckoView windows
1612262 P3 WebGL context lost
1613227 P3 [meta] Reduce overhead of creating a new window on GeckoView meta
1616731 P3 Fenix should ask user for camera/mic before asking OS.
1618664 P3 Calling GeckoSession.loadUri() with GeckoSession.LOAD_FLAGS_BYPASS_CACHE and GeckoSession.LOAD_FLAGS_REPLACE_HISTORY fails to reload some pages.
1619678 P3 Geckoview asks for camera/mic permission when it shouldn't
1620447 P3 600ms are spent inside Schemas.jsm during startup
1622323 P3 Add test for restarting gecko view with an add-on with onUpdateAvailable listener
1626003 P3 Implement a way to turn on and off WebExtension APIs depending on support
1638878 P3 Verify correctness of |contextualidentities| API
1641420 P3 Expose tabId for a GeckoSession
1643090 P3 installBuiltIn partially installs add-ons without ID
1643209 P3 Clicking Dropdown Input List Item Doesn't Work Unless Long Press
1643688 P3 tabs.create on GeckoView can use cookieStoreId without the right permissions or preference regression
1643740 P3 use userContextId in GeckoView
1644039 P3 Tests that use window.close() are prone to cause intermittent test failures Rob Wu [:robwu]
1644486 P3 Crash in [@ EMPTY: no crashing thread identified; ERROR_NO_MINIDUMP_HEADER] for Android crash
1645841 P3 Crash in [@ core::option::expect_failed | webrender_api::resources::ApiResources::update_blob_image] crash, intermittent-failure Andrew Osmond [:aosmond] (he/him)
1646530 P3 Add-on gets uninstalled after force closing while enabling/ disabling to run in private browsing
1657480 P3 support multiple recommendation states
1657698 P3 Suspended pages are not put into bfcache
1658818 P3 Startup crash on ASan builds
1660286 P3 HistoryItem.title is null sometimes but it's tagged as @NonNull
1660867 P3 GeckoViewPushController returns failure code: 0x80004005 (NS_ERROR_FAILURE)
1661705 P3 NullPointerException when touching a GeckoView with GeckoSession released (getPanZoomController)
1662847 P3 Listing installed extension fails as AddonManager is not initialized
1672495 P3 Don't flash nested-subframe scrollbars on inital page reflow
1673454 P3 [Bug] Button in fixed position div disappears when updated via JavaScript testcase-wanted
1681638 P3 browser.runtime.connectNative().postMessage fails to handle JavaScript object with nested array
1682579 P3 Web Audio API is not working in background
1685152 P3 Expose URI class sec-want
1686116 P3 Dispatch "user-interaction-active" and "user-interaction-inactive" notifications to Gecko observer as appropriate
1686210 P3 Consider specifying security status of site displayed in reader mode
1693911 P3 runUiThreadCallback blocks first frame & visual completeness for 44ms in COLD MAIN start up
1697852 P3 Make sure no dependencies come from jcenter
1700817 P3 Oculus rejects app with GeckoView because WebAuthnTokenManager uses Google Mobile Services APIs
1710108 P3 Search field on lcbo.com loses focus with unknown cause webcompat:site-wait Makoto Kato [:m_kato]
1711089 P3 [Bug] Black Highlight on Selecting Text and Searching
1712784 P3 Creating GeckoSessions and loading URLs from non-main threads perf:pageload
1713819 P3 tabs.onUpdated.addListener throws an exception when passing properties: ["discarded", "url"]
1714906 P3 Fenix's skip and the back button for music song do not work in any website.
1717067 P3 Twitter displays black page at startup
1726469 P3 Annotate OutOfMemoryError that happen while creating an event object in EventDispatcher
1738016 P3 Multiple intermittents from TextInputDelegateTest Makoto Kato [:m_kato]
1738233 P3 Toolbar doesn't change its state at scroll
1748526 P3 BrowserAction popup always opens as non-private tab on Fenix regression
1752631 P3 Write an automated test to measure tab retention
1762268 P3 Add UIAutomator smoke tests
1771978 P3 Crash in [@ java.lang.RuntimeException: at mozilla.components.browser.engine.gecko.GeckoEngine$$ExternalSyntheticLambda15.onShutdown(Unknown Source) ] crash
1782759 P3 Add tests to ensure that browsing context flags are carried over across navigations in GV apps [:owlish] 🦉 PST
1787352 P3 Evaluate if network.tickle-wifi.enabled is valuable on currently supported versions of Android
1797379 P3 Remove getPermissions(final @NonNull String uri)
1802848 P3 Touches on some expandable menus are sometimes not handled
1805973 P3 about:crashparent doesn't display the crash system notification on Android 9 Xiaomi device
1805974 P3 about:crashparent doesn't display the crash notification on Android 10+ Xiaomi devices
1808616 P3 Investigate to determine why MOZ_CRASH_UNSAFE_PRINTF was not reported in launch crash Zac McKenney [:zmckenney]
1809938 P3 [meta] Deliver Fenix as an AAB meta Zac McKenney [:zmckenney]
1809988 P3 Investigate incrementing all mach builds to prevent stale dependencies Zac McKenney [:zmckenney]
1810736 P3 Media decoding is not compatible with isolated process
1819716 P3 Remove deprecated APIs
1825873 P3 Replace Fenix license list with the support-license component
1838719 P3 Fix Abstraction Layer in SaveToPDFMiddleware for Telemetry
1850808 P3 [meta] Zoom Options on Android meta
1920504 P3 Create Documentation on GeckoView Prefs
1938440 P3 [Spike] Investigate and document "one window, one tab" pattern in Android and see if "one window, many tabs" is worth pursuing
1951985 P3 GeckoView does not respect the distinction between "user" and "default" prefs when they are set through RuntimeSettings
1962027 P3 Cannot get code lists on isolated content process
1967747 P3 Add documentation on how to run non-junit tests locally
1803207 P4 Investigate and catalog omni.ja contents in GeckoView
1510384 P5 After entering fullscreen the size of video controls shouldn't vary depending on mobile/ desktop site
1519197 P5 Add 1st Party Support for AdBlock Plus-style blocklists in Gecko/GeckoView
1529196 P5 Crash in [@ ElfLoader::~ElfLoader] crash
1656735 P5 URL spoofing on Android with U+03XX (Combining Dots) csectype-spoof, reporter-external, sec-low
1785929 P5 Update to JDK LTS 25
1791842 P5 Android crash in [@ java.lang.UnsatisfiedLinkError: at com.sun.jna.Native.loadNativeDispatchLibraryFromClasspath] crash, regression, regressionwindow-wanted
1797558 P5 Navigation from extension page to another extension page results in a unusable tab on Fenix (and RefBrow) Jeff Boek [:boek]
1098508 -- Run Android jit-tests
1123938 -- [meta] Make viewport handling consistent with other browsers compat, meta, mobile, parity-chrome, parity-ie
1365119 -- Double tap doesn't select a word in text areas
1419190 -- [meta] Implement WebXR Core Module dev-doc-needed, meta
1419206 -- Enable WebXR 1.0 by default in release dev-doc-needed
1544621 -- [meta] Web platform tests that frequently/always crash running on GeckoView meta
1548934 -- Close the keyboard when switching to another tab or app Makoto Kato [:m_kato]
1567912 -- Support AAB publication in release pipeline leave-open
1606723 -- [meta] Hook up Normandy to GeckoView meta
1609505 -- GeckoView tests take too long to run for try builds requested by GeckoView developers
1634194 -- Enable crash reporter for Media Process
1640738 -- TypeError: can't access property "canGoBack", this.webNavigation is null
1655069 -- CSP/XFO error pages should offer an option to visit the page directly on Android
1678103 -- [Bug] Incorrect values of document.hidden/document.visibilityState when page is loaded in background tab
1722266 -- 9.77 - 2.2% espn fcp / imdb PerceptualSpeedIndex + 113 more (Android) regression on Wed July 21 2021 perf, perf-alert, regression
1757945 -- [Bug]: grey bar at the bottom of images after scrolling down in landscape (on Android with dynamic toolbar)
1760849 -- Dynamic toolbar issue on google maps when in desktop mode
1770988 -- Move reader mode actors to toolkit Jeff Boek [:boek]
1778039 -- Crash in [@ mozilla::jni::NativeStub<T>::Wrap<T>] crash Makoto Kato [:m_kato]
1786914 -- Research if the Sensor Rate in GeckoAppShell for Android can be Slowed Down
1809194 -- Unable to correctly Zoom-in and out in Landscape mode with Google Pixel 6 (Android 13)
1810039 -- Fenix packages about:neterror which relies on aboutNetError.css and friends, but doesn't package those CSS files
1810768 -- Unable to add a rupay card in credit card - not handling generic CC
1847263 -- Hook about:crashes etc
1888979 -- Consider adding a persistant preference option in GeckoView as a preference type
1896468 -- Landscape printing is cut off/scaled incorrectly.
1908181 -- Consider finding a way to unify by a bridge Settings.kt and *Nimbus.kt
1908182 -- [meta] Improve Preference and Nimbus support in Android meta
1927140 -- Improve Documentation on how to Set Prefs from GeckoView <--> AC <--> Fenix
1927141 -- Make it easier to use Gecko preferences from Fenix (and others)
1942196 -- Crash in [@ java.lang.NegativeArraySizeException: at org.mozilla.geckoview.GeckoSession$SessionState.spliceSessionHistory(GeckoSession.java)] crash, leave-open, regression
1943421 -- Remove Galaxy A55 suites from android-geckoview preset
1948445 -- Auto-detecting the initial "to" language in Android translations is not working as expected due to difference in accept-languages in Android
1977477 -- Update Firefox Android Nimbus implementation to support setting Gecko preferences Charlie Humphreys [:charlie] [:jeddai]
1981482 -- Update DefaultGeckoPreferenceAccessor to use constructor initialization
1981580 -- [meta] Fix junit tests for isolated processes meta
1982392 -- [AC] Browser Store (or somewhere else) should be able to report browser preferences changes
1984316 -- Consider adding public API somewhere centrally to check process type
1985804 -- [meta] Performance on Isolated Processes meta
1987417 -- Adjust Isolated Process Scheduling and Tier Levels
1988041 -- Fix frequent junit intermittent failures that were disabled for Android 14 leave-open Olivia Hall [:olivia]
1995392 -- Update IsolatedProcessTest#appZygoteProcessBehavior to have more extended check Olivia Hall [:olivia]
1998834 -- [2] Calculate the right size of the screenshot [:owlish] 🦉 PST

270 Total; 270 Open (100%); 0 Resolved (0%); 0 Verified (0%);