Gecko ===== Gecko is Mozilla's rendering engine for the web. It is made up of HTML parsing and rendering, networking, JavaScript, IPC, DOM, OS widget abstractions and much much more. It also includes some UI components that are shared with applications built on top of Gecko such as Firefox for Desktop, Firefox for Android, and Thunderbird. As well as rendering web pages Gecko is also responsible for rendering the application's UI in some applications. Networking (necko) ------------------ The networking engine services requests for DNS queries as well as for content hosted on web servers using either http, http/2 or http/3 protocols to retrieve it. Necko uses NSS (`Network Security Services library `_) for its cryptographic uses e.g. to perform secure requests using TLS. :ref:`Read more ` JavaScript (SpiderMonkey) ------------------------- The JavaScript engine is responsible for running JavaScript code both in content processes for webpages as well as the JavaScript code that makes up the bulk of the UI in applications like Firefox and Thunderbird. :ref:`Read more ` System Modules -------------- Gecko uses a variant of the standard ECMAScript module to implement the browser internal. :ref:`Read more ` XPCOM ----- XPCOM (Cross-Platform Component Object Model) is Mozilla's version of Microsoft's `COM `_. XPCOM and :ref:`WebIDL ` are the primary ways for our frontend to communicate with the underlying platform and to invoke methods that are implemented in native code. XPCOM performs the following critical functions: #. Allows creating software components with strictly defined `interfaces `_ using :ref:`XPIDL `. These components can be implemented in C++, JavaScript or Rust. They can also be invoked and manipulated in any of those languages regardless of the underlying implementation language. #. Acts as a process-global registry of named components (there are singleton "services" as well as factories for creating instances of components). #. Allows components and services to implement multiple interfaces, and to be dynamically cast to those interfaces using ``QueryInterface``. If that all sounds rather abstract, that's because it is. XPCOM is one of the oldest Mozilla technologies that Firefox is still built on top of. XPCOM made a lot more sense in the late 90s when Microsoft COM was still popular and the Mozilla codebase was also being developed as a general application development platform for third-parties. There have been `long-standing efforts `_ to move away from or simplify XPCOM in places where its usefulness is questionable. .. mermaid:: sequenceDiagram Caller->>Component Registry: Get service @mozilla.org/cookie-banner-service#59;1 Component Registry->>nsCookieBannerService: new nsCookieBannerService-->>Component Registry: return Component Registry-->>Caller: return Caller->>nsCookieBannerService: QueryInterface(nsICookieBannerService) nsCookieBannerService-->>Caller: return :ref:`Read more ` Process Separation / Fission / IPC / Actors ------------------------------------------- Firefox is a multi-process application. Over the lifetime of the main Firefox process, many other sub processes can be started and stopped. A full catalogue of those different processes can be found :ref:`here `. Firefox communicates between these processes (mostly) asynchronously using the native inter-process communication mechanisms of the underlying platform. Those mechanisms and their details are hidden under cross-platform abstractions like :ref:`IPDL ` (for native code) and :ref:`JSActors ` (for frontend code). Firefox’s initial web content process separation (this was Project "Electrolysis", sometimes shortened to “e10s”) shipped in 2016, and separated all web content into a single shared content process. Not long after that, multiple content processes were enabled, and the web content of tabs would be assigned to one of the created content processes using a round-robin scheme. In 2021, as part of the mitigations for the `Spectre `_ and `Meltdown `_ processor vulnerabilities, Firefox’s process model changed to enforce a model where each content process only loads and executes instructions from a single site (this was Project “Fission”). You can read more about the `underlying rationale and technical details about Project Fission `_. DOM + WebIDL ------------ The :ref:`DOM APIs ` implement the functionality of elements in webpages and UI that is rendered by Gecko. :ref:`WebIDL ` is a standard specification for describing the interfaces to DOM objects. As well as defining the interface for webpages Gecko also makes use of it for defining the interface to various internal components. Like XPCOM, components that implement WebIDL interfaces can be called from both C++ and JavaScript. Style System (CSS) ------------------ The style system is responsible for parsing the document's CSS and using that to resolve a value for every CSS property on every element in the document. This determines many characteristics of how each element will render (e.g. fonts, colors, size, layout model). :ref:`Read more