list.rs (502B)
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 7 #[cfg(feature = "gecko")] 8 pub use crate::values::specified::list::ListStyleType; 9 pub use crate::values::specified::list::Quotes; 10 11 impl Quotes { 12 /// Initial value for `quotes`. 13 #[inline] 14 pub fn get_initial_value() -> Quotes { 15 Quotes::Auto 16 } 17 }