forked from mirrors/gecko-dev
Source-Repo: https://github.com/servo/servo Source-Revision: b4cebe1920ee9dc64f1a080fb940ea77743692a2 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : 513ed415276f1165866a4127033b410539529c11
11 lines
444 B
Rust
11 lines
444 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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
//! Computed types for CSS borders.
|
|
|
|
use values::computed::length::LengthOrNumber;
|
|
use values::generics::rect::Rect;
|
|
|
|
/// A specified rectangle made of four `<length-or-number>` values.
|
|
pub type LengthOrNumberRect = Rect<LengthOrNumber>;
|