mirror of
https://github.com/servo/servo.git
synced 2025-06-09 00:53:26 +00:00
* script: Move HasParent to script_bindings and update imports for InheritTypes. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make principal creation generic over DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move a bunch of proxy-related code to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make some proxy-related code generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move DomSlice to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move some utility bindings code to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make enumerating and resolving globals generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make realm helpers generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move implementations on concrete DOM types to concrete bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make additional codegen helpers generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make iterator creation generic over the DOM interface. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Make reporting an exception a generic operation. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move AsCCharPtrPtr to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Formatting. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Address clippy warnings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> --------- Signed-off-by: Josh Matthews <josh@joshmatthews.net>
32 lines
949 B
Rust
32 lines
949 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
use js::rust::{HandleObject, MutableHandleObject};
|
|
|
|
use crate::script_runtime::JSContext;
|
|
|
|
pub trait DocumentHelpers {
|
|
fn ensure_safe_to_run_script_or_layout(&self);
|
|
}
|
|
|
|
pub trait ServoInternalsHelpers {
|
|
fn is_servo_internal(cx: JSContext, global: HandleObject) -> bool;
|
|
}
|
|
|
|
pub trait TestBindingHelpers {
|
|
fn condition_satisfied(cx: JSContext, global: HandleObject) -> bool;
|
|
fn condition_unsatisfied(cx: JSContext, global: HandleObject) -> bool;
|
|
}
|
|
|
|
pub trait WebGL2RenderingContextHelpers {
|
|
fn is_webgl2_enabled(cx: JSContext, global: HandleObject) -> bool;
|
|
}
|
|
|
|
pub trait WindowHelpers {
|
|
fn create_named_properties_object(
|
|
cx: JSContext,
|
|
proto: HandleObject,
|
|
object: MutableHandleObject,
|
|
);
|
|
}
|