forked from mirrors/gecko-dev
Source-Repo: https://github.com/servo/servo Source-Revision: 80488c4494911257e62c98388b36d94d74f9d330 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : 8f1fafdc30e127b62a1e50381f2988f62cdce045
11 lines
498 B
Rust
11 lines
498 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 legacy Gecko-only properties.
|
|
|
|
use values::computed::length::LengthOrPercentage;
|
|
use values::generics::gecko::ScrollSnapPoint as GenericScrollSnapPoint;
|
|
|
|
/// A computed type for scroll snap points.
|
|
pub type ScrollSnapPoint = GenericScrollSnapPoint<LengthOrPercentage>;
|