forked from mirrors/gecko-dev
Fixes warnings from rust-lang/rust#44229 when `--enable-commonmark` is passed to rustdoc. This is mostly a global find-and-replace for bare URIs on lines by themselves in doc comments. --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes do not require tests because they are doc formatting changes only Source-Repo: https://github.com/servo/servo Source-Revision: 0e62a5829b7c29ae2667a21a439aff1e89201bf3 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : a3cb4b6d3c62220f728cae0ab3bc603fa403ba8b
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
|
|
}
|
|
}
|