mirror of
https://github.com/servo/servo.git
synced 2025-06-12 10:24:43 +00:00
http://www.robohornet.org gives a score of 101.36 on master, and 102.68 with this PR. The latter is slightly better, but probably within noise level. So it looks like this PR does not affect DOM performance. This is expected since `Box::new` is defined as: ```rust impl<T> Box<T> { #[inline(always)] pub fn new(x: T) -> Box<T> { box x } } ``` With inlining, it should compile to the same as box syntax.
47 lines
1.5 KiB
Rust
47 lines
1.5 KiB
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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
use dom::bindings::codegen::Bindings::PaintSizeBinding;
|
|
use dom::bindings::codegen::Bindings::PaintSizeBinding::PaintSizeMethods;
|
|
use dom::bindings::num::Finite;
|
|
use dom::bindings::reflector::Reflector;
|
|
use dom::bindings::reflector::reflect_dom_object;
|
|
use dom::bindings::root::DomRoot;
|
|
use dom::paintworkletglobalscope::PaintWorkletGlobalScope;
|
|
use dom_struct::dom_struct;
|
|
use euclid::TypedSize2D;
|
|
use style_traits::CSSPixel;
|
|
|
|
#[dom_struct]
|
|
pub struct PaintSize {
|
|
reflector: Reflector,
|
|
width: Finite<f64>,
|
|
height: Finite<f64>,
|
|
}
|
|
|
|
impl PaintSize {
|
|
fn new_inherited(size: TypedSize2D<f32, CSSPixel>) -> PaintSize {
|
|
PaintSize {
|
|
reflector: Reflector::new(),
|
|
width: Finite::wrap(size.width as f64),
|
|
height: Finite::wrap(size.height as f64),
|
|
}
|
|
}
|
|
|
|
pub fn new(global: &PaintWorkletGlobalScope, size: TypedSize2D<f32, CSSPixel>) -> DomRoot<PaintSize> {
|
|
reflect_dom_object(Box::new(PaintSize::new_inherited(size)), global, PaintSizeBinding::Wrap)
|
|
}
|
|
}
|
|
|
|
impl PaintSizeMethods for PaintSize {
|
|
/// https://drafts.css-houdini.org/css-paint-api/#paintsize
|
|
fn Width(&self) -> Finite<f64> {
|
|
self.width
|
|
}
|
|
|
|
/// https://drafts.css-houdini.org/css-paint-api/#paintsize
|
|
fn Height(&self) -> Finite<f64> {
|
|
self.height
|
|
}
|
|
}
|