Skip to main content

style/values/computed/
list.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5//! `list` computed values.
6
7pub use crate::values::specified::list::ListStyleType;
8pub use crate::values::specified::list::Quotes;
9
10impl Quotes {
11    /// Initial value for `quotes`.
12    #[inline]
13    pub fn get_initial_value() -> Quotes {
14        Quotes::Auto
15    }
16}