Expand description
Servo, the mighty web browser engine from the future.
This is a very simple library that wires all of Servoโs components
together as type Servo
, along with a generic client
implementing the WindowMethods
trait, to create a working web
browser.
The Servo
type is responsible for configuring a
Constellation
, which does the heavy lifting of coordinating all
of Servoโs internal subsystems, including the ScriptThread
and the
LayoutThread
, as well maintains the navigation context.
Servo
is fed events from a generic type that implements the
WindowMethods
trait.
Re-exportsยง
pub use webgpu;
pub use webxr;
pub use background_hang_monitor;
pub use base;
pub use canvas;
pub use canvas_traits;
pub use compositing;
pub use devtools;
pub use devtools_traits;
pub use euclid;
pub use fonts;
pub use ipc_channel;
pub use layout_thread_2020;
pub use media;
pub use net;
pub use net_traits;
pub use profile;
pub use profile_traits;
pub use script;
pub use script_layout_interface;
pub use script_traits;
pub use servo_config as config;
pub use servo_config;
pub use servo_geometry;
pub use servo_url;
pub use style;
pub use style_traits;
pub use webrender_api;
pub use bluetooth;
pub use bluetooth_traits;
Modulesยง
- clipboard_
delegate ๐ - media_
platform ๐ - proxies ๐
- responders ๐
- servo_
delegate ๐ - Keyboard related WebDriver functionality.
- webview ๐
- webview_
delegate ๐
Structsยง
- A request to authenticate a
WebView
navigation. Embedders may choose to prompt the user to enter credentials or simply ignore this request (in which case credentials will not be used). - Both
Logger ๐ - Event to expose input methods to program logic.
- Sends messages to the embedder.
- Filter for file selection; the
String
content is expected to be extension (e.g, โdocโ, without the prefixing โ.โ) - Index of gamepad in list of systemโs connected gamepads
- The minimum and maximum values that can be reported for axis or button input from this gamepad
- The haptic effects supported by this gamepad
- Keyboard events are issued for all pressed and released keys.
- Pressed modifier keys.
- A request to navigate a
WebView
or one of its inner frames. This can be handled asynchronously. If not handled, the request will automatically be allowed. - Data that could be used to display a desktop notification to the end user when the Notification API is called.
- Actions available for users to choose from for interacting with the notification.
- A permissions request for a
WebView
The embedder should allow or deny the request, either by reading a cached value or querying the user for permission via the user interface. - Render
Notifier ๐ - Information about a
WebView
โs screen geometry and offset. This is used for the Screen CSSOM APIs andwindow.screenLeft
/window.screenTop
. - The in-process interface to Servo.
- Match keyboard shortcuts and excute actions.
- A software rendering context that uses a software OpenGL implementation to render Servo. This will generally have bad performance, but can be used in situations where it is more convenient to have consistent, but slower display output.
- An opaque identifier for a touch point.
- An ID for a sequence of touch events between a
Down
and theUp
orCancel
event. - Parse from string error, returned when string does not match to any Code variant.
- Parse from string error, returned when string does not match to any Key variant.
- Information related to the loading of a web resource. These are created for all HTTP requests. The client may choose to intercept the load of web resources and send an alternate response by calling
WebResourceLoad::intercept
. - A handle to a Servo webview. If you clone this handle, it does not create a new webview, but instead creates a new handle to the webview. Once the last handle is dropped, Servo considers that the webview has closed and will clean up all associated resources related to this webview.
- The Wheel event deltas in every direction
- A
RenderingContext
that uses thesurfman
library to render to araw-window-handle
identified window.surfman
will attempt to create an OpenGL context and surface for this window. This is a simple implementation of theRenderingContext
crate, but by default it paints to the entire window surface.
Enumsยง
- A response to a request to allow or deny an action.
- Code is the physical position of a key.
- Describes the state of a composition session.
- A cursor for the window. This is different from a CSS cursor (see
CursorKind
) in that it has noAuto
value. - An editing action that should be performed on a
WebView
. - The type of Gamepad event
- The type of Gamepad input being updated
- An input event that is sent from the embedder to Servo.
- Used to specify the kind of input method editor appropriate to edit a field. This is a subset of htmlinputelement::InputType because some variants of InputType donโt make sense in this context.
- Key represents the meaning of a keypress.
- Describes the state the key is in.
- The status of the load in this
WebView
. - The location attribute contains an indication of the logical location of the key on the device.
- Type of events sent from script to the embedder about the media session.
- The types of mouse events
- Enum with variants that match the DOM PermissionName enum
- Tracks whether Servo isnโt shutting down, is in the process of shutting down, or has finished shutting down.
- Simple dialogs are synchronous dialogs that can be opened by web content. Since their messages are controlled by web content, they should be presented to the user in a way that makes them impossible to mistake for browser UI.
- The type of platform theme.
- The type of input represented by a multi-touch event.
- Messages to the constellation originating from the WebDriver server.
- Mode to measure WheelDelta floats in
Traitsยง
- The
RenderingContext
trait defines a set of methods for managing an OpenGL or GLES rendering context. Implementors of this trait are responsible for handling the creation, management, and destruction of the rendering context and its associated resources.
Functionsยง
- create_
constellation ๐ - create_
sandbox ๐ - Content process entry point.
- webdriver ๐