mirror of
https://github.com/servo/servo.git
synced 2025-07-10 17:03:40 +01:00
10 lines
462 B
Rust
10 lines
462 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/. */
|
|
|
|
//! Computed types for CSS values that are related to motion path.
|
|
|
|
/// A computed offset-path. The computed value is as specified value.
|
|
///
|
|
/// https://drafts.fxtf.org/motion-1/#offset-path-property
|
|
pub use crate::values::specified::motion::OffsetPath;
|