/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
usecrate::applicable_declarations::CascadePriority; usecrate::custom_properties_map::CustomPropertiesMap; usecrate::media_queries::Device; usecrate::properties::{
CSSWideKeyword, CustomDeclaration, CustomDeclarationValue, LonghandId, LonghandIdSet,
PropertyDeclaration,
}; usecrate::properties_and_values::{
registry::PropertyRegistrationData,
syntax::data_type::DependentDataTypes,
value::{
AllowComputationallyDependent, ComputedValue as ComputedRegisteredValue,
SpecifiedValue as SpecifiedRegisteredValue,
},
}; usecrate::selector_map::{PrecomputedHashMap, PrecomputedHashSet}; usecrate::stylesheets::UrlExtraData; usecrate::stylist::Stylist; usecrate::values::computed::{self, ToComputedValue}; usecrate::values::specified::FontRelativeLength; usecrate::Atom; use cssparser::{
CowRcStr, Delimiter, Parser, ParserInput, SourcePosition, Token, TokenSerializationType,
}; use selectors::parser::SelectorParseErrorKind; use servo_arc::Arc; use smallvec::SmallVec; use std::borrow::Cow; use std::collections::hash_map::Entry; use std::fmt::{self, Write}; use std::ops::{Index, IndexMut}; use std::{cmp, num}; use style_traits::{CssWriter, ParseError, StyleParseErrorKind, ToCss};
/// The environment from which to get `env` function values. /// /// TODO(emilio): If this becomes a bit more complex we should probably move it /// to the `media_queries` module, or something. #[derive(Debug, MallocSizeOf)] pubstruct CssEnvironment;
type EnvironmentEvaluator = fn(device: &Device, url_data: &UrlExtraData) -> VariableValue;
/// A value for a custom property is just a set of tokens. /// /// We preserve the original CSS for serialization, and also the variable /// references to other custom property names. #[derive(Clone, Debug, MallocSizeOf, ToShmem)] pubstruct VariableValue { /// The raw CSS string. pub css: String,
/// The url data of the stylesheet where this value came from. pub url_data: UrlExtraData,
/// var(), env(), or non-custom property (e.g. through `em`) references.
references: References,
}
trivial_to_computed_value!(VariableValue);
// For all purposes, we want values to be considered equal if their css text is equal. impl PartialEq for VariableValue { fn eq(&self, other: &Self) -> bool { self.css == other.css
}
}
impl Eq for VariableValue {}
impl ToCss for SpecifiedValue { fn to_css<W>(&self, dest: &mut CssWriter<W>) -> fmt::Result where
W: Write,
{
dest.write_str(&self.css)
}
}
/// A pair of separate CustomPropertiesMaps, split between custom properties /// that have the inherit flag set and those with the flag unset. #[repr(C)] #[derive(Clone, Debug, Default, PartialEq)] pubstruct ComputedCustomProperties { /// Map for custom properties with inherit flag set, including non-registered /// ones. pub inherited: CustomPropertiesMap, /// Map for custom properties with inherit flag unset. pub non_inherited: CustomPropertiesMap,
}
impl ComputedCustomProperties { /// Return whether the inherited and non_inherited maps are none. pubfn is_empty(&self) -> bool { self.inherited.is_empty() && self.non_inherited.is_empty()
}
/// Return the name and value of the property at specified index, if any. pubfn property_at(&self, index: usize) -> Option<(&Name, &Option<ComputedRegisteredValue>)> { // Just expose the custom property items from custom_properties.inherited, followed // by custom property items from custom_properties.non_inherited. self.inherited
.get_index(index)
.or_else(|| self.non_inherited.get_index(index - self.inherited.len()))
}
/// Insert a custom property in the corresponding inherited/non_inherited /// map, depending on whether the inherit flag is set or unset. fn insert(
&mutself,
registration: &PropertyRegistrationData,
name: &Name,
value: ComputedRegisteredValue,
) { self.map_mut(registration).insert(name, value)
}
/// Remove a custom property from the corresponding inherited/non_inherited /// map, depending on whether the inherit flag is set or unset. fn remove(&mutself, registration: &PropertyRegistrationData, name: &Name) { self.map_mut(registration).remove(name);
}
/// Shrink the capacity of the inherited maps as much as possible. fn shrink_to_fit(&mutself) { self.inherited.shrink_to_fit(); self.non_inherited.shrink_to_fit();
}
/// Returns the relevant custom property value given a registration. pubfn get(
&self,
registration: &PropertyRegistrationData,
name: &Name,
) -> Option<&ComputedRegisteredValue> { if registration.inherits() { self.inherited.get(name)
} else { self.non_inherited.get(name)
}
}
}
/// Both specified and computed values are VariableValues, the difference is /// whether var() functions are expanded. pubtype SpecifiedValue = VariableValue; /// Both specified and computed values are VariableValues, the difference is /// whether var() functions are expanded. pubtype ComputedValue = VariableValue;
/// Set of flags to non-custom references this custom property makes. #[derive(Clone, Copy, Debug, Default, PartialEq, Eq, MallocSizeOf, ToShmem)] struct NonCustomReferences(u8);
bitflags! { impl NonCustomReferences: u8 { /// At least one custom property depends on font-relative units. const FONT_UNITS = 1 << 0; /// At least one custom property depends on root element's font-relative units. const ROOT_FONT_UNITS = 1 << 1; /// At least one custom property depends on line height units. const LH_UNITS = 1 << 2; /// At least one custom property depends on root element's line height units. const ROOT_LH_UNITS = 1 << 3; /// All dependencies not depending on the root element. const NON_ROOT_DEPENDENCIES = Self::FONT_UNITS.0 | Self::LH_UNITS.0; /// All dependencies depending on the root element. const ROOT_DEPENDENCIES = Self::ROOT_FONT_UNITS.0 | Self::ROOT_LH_UNITS.0;
}
}
impl NonCustomReferences { fn for_each<F>(&self, mut f: F) where
F: FnMut(SingleNonCustomReference),
{ for (_, r) inself.iter_names() { let single = match r { Self::FONT_UNITS => SingleNonCustomReference::FontUnits, Self::ROOT_FONT_UNITS => SingleNonCustomReference::RootFontUnits, Self::LH_UNITS => SingleNonCustomReference::LhUnits, Self::ROOT_LH_UNITS => SingleNonCustomReference::RootLhUnits,
_ => unreachable!("Unexpected single bit value"),
};
f(single);
}
}
fn from_unit(value: &CowRcStr) -> Self { // For registered properties, any reference to font-relative dimensions // make it dependent on font-related properties. // TODO(dshin): When we unit algebra gets implemented and handled - // Is it valid to say that `calc(1em / 2em * 3px)` triggers this? if value.eq_ignore_ascii_case(FontRelativeLength::LH) { returnSelf::FONT_UNITS | Self::LH_UNITS;
} if value.eq_ignore_ascii_case(FontRelativeLength::EM) ||
value.eq_ignore_ascii_case(FontRelativeLength::EX) ||
value.eq_ignore_ascii_case(FontRelativeLength::CAP) ||
value.eq_ignore_ascii_case(FontRelativeLength::CH) ||
value.eq_ignore_ascii_case(FontRelativeLength::IC)
{ returnSelf::FONT_UNITS;
} if value.eq_ignore_ascii_case(FontRelativeLength::RLH) { returnSelf::ROOT_FONT_UNITS | Self::ROOT_LH_UNITS;
} if value.eq_ignore_ascii_case(FontRelativeLength::REM) { returnSelf::ROOT_FONT_UNITS;
} Self::empty()
}
}
/// A struct holding information about the external references to that a custom /// property value may have. #[derive(Clone, Debug, Default, MallocSizeOf, PartialEq, ToShmem)] struct References {
refs: Vec<VarOrEnvReference>,
non_custom_references: NonCustomReferences,
any_env: bool,
any_var: bool,
}
/// Create a new custom property without parsing if the CSS is known to be valid and contain no /// references. pubfn new(
css: String,
url_data: &UrlExtraData,
first_token_type: TokenSerializationType,
last_token_type: TokenSerializationType,
) -> Self { Self {
css,
url_data: url_data.clone(),
first_token_type,
last_token_type,
references: Default::default(),
}
}
fn push<'i>(
&mutself,
css: &str,
css_first_token_type: TokenSerializationType,
css_last_token_type: TokenSerializationType,
) -> Result<(), ()> { /// Prevent values from getting terribly big since you can use custom /// properties exponentially. /// /// This number (2MB) is somewhat arbitrary, but silly enough that no /// reasonable page should hit it. We could limit by number of total /// substitutions, but that was very easy to work around in practice /// (just choose a larger initial value and boom). const MAX_VALUE_LENGTH_IN_BYTES: usize = 2 * 1024 * 1024;
// This happens e.g. between two subsequent var() functions: // `var(--a)var(--b)`. // // In that case, css_*_token_type is nonsensical. if css.is_empty() { return Ok(());
}
self.first_token_type.set_if_nothing(css_first_token_type); // If self.first_token_type was nothing, // self.last_token_type is also nothing and this will be false: ifself
.last_token_type
.needs_separator_when_before(css_first_token_type)
{ self.css.push_str("/**/")
} self.css.push_str(css); self.last_token_type = css_last_token_type;
Ok(())
}
/// Returns the raw CSS text from this VariableValue pubfn css_text(&self) -> &str {
&self.css
}
/// Returns whether this variable value has any reference to the environment or other /// variables. pubfn has_references(&self) -> bool { self.references.has_references()
}
}
/// Like parse_declaration_value, but accept `!` and `;` since they are only invalid at the top level. fn parse_declaration_value_block<'i, 't>(
input: &mut Parser<'i, 't>,
input_start: SourcePosition,
references: &mut References,
missing_closing_characters: &mut String,
) -> Result<(TokenSerializationType, TokenSerializationType), ParseError<'i>> { letmut is_first = true; letmut first_token_type = TokenSerializationType::Nothing; letmut last_token_type = TokenSerializationType::Nothing; letmut prev_reference_index: Option<usize> = None; loop { let token_start = input.position(); let Ok(token) = input.next_including_whitespace_and_comments() else { break;
};
let prev_token_type = last_token_type; let serialization_type = token.serialization_type();
last_token_type = serialization_type; if is_first {
first_token_type = last_token_type;
is_first = false;
}
macro_rules! nested {
() => {
input.parse_nested_block(|input| {
parse_declaration_value_block(
input,
input_start,
references,
missing_closing_characters,
)
})?
};
}
macro_rules! check_closed {
($closing:expr) => { if !input.slice_from(token_start).ends_with($closing) {
missing_closing_characters.push_str($closing)
}
};
} iflet Some(index) = prev_reference_index.take() {
references.refs[index].next_token_type = serialization_type;
} match *token {
Token::Comment(_) => { let token_slice = input.slice_from(token_start); if !token_slice.ends_with("*/") {
missing_closing_characters.push_str(if token_slice.ends_with('*') { "/"
} else { "*/"
})
}
},
Token::BadUrl(ref u) => { let e = StyleParseErrorKind::BadUrlInDeclarationValueBlock(u.clone()); return Err(input.new_custom_error(e));
},
Token::BadString(ref s) => { let e = StyleParseErrorKind::BadStringInDeclarationValueBlock(s.clone()); return Err(input.new_custom_error(e));
},
Token::CloseParenthesis => { let e = StyleParseErrorKind::UnbalancedCloseParenthesisInDeclarationValueBlock; return Err(input.new_custom_error(e));
},
Token::CloseSquareBracket => { let e = StyleParseErrorKind::UnbalancedCloseSquareBracketInDeclarationValueBlock; return Err(input.new_custom_error(e));
},
Token::CloseCurlyBracket => { let e = StyleParseErrorKind::UnbalancedCloseCurlyBracketInDeclarationValueBlock; return Err(input.new_custom_error(e));
},
Token::Function(ref name) => { let is_var = name.eq_ignore_ascii_case("var"); if is_var || name.eq_ignore_ascii_case("env") { let our_ref_index = references.refs.len(); let fallback = input.parse_nested_block(|input| { // TODO(emilio): For env() this should be <custom-ident> per spec, but no other browser does // that, see https://github.com/w3c/csswg-drafts/issues/3262. let name = input.expect_ident()?; let name = Atom::from(if is_var { match parse_name(name.as_ref()) {
Ok(name) => name,
Err(()) => { let name = name.clone(); return Err(input.new_custom_error(
SelectorParseErrorKind::UnexpectedIdent(name),
));
},
}
} else {
name.as_ref()
});
// We want the order of the references to match source order. So we need to reserve our slot // now, _before_ parsing our fallback. Note that we don't care if parsing fails after all, since // if this fails we discard the whole result anyways. let start = token_start.byte_index() - input_start.byte_index();
references.refs.push(VarOrEnvReference {
name,
start, // To be fixed up after parsing fallback and auto-closing via our_ref_index.
end: start,
prev_token_type, // To be fixed up (if needed) on the next loop iteration via prev_reference_index.
next_token_type: TokenSerializationType::Nothing, // To be fixed up after parsing fallback.
fallback: None,
is_var,
});
letmut fallback = None; if input.try_parse(|input| input.expect_comma()).is_ok() {
input.skip_whitespace(); let fallback_start = num::NonZeroUsize::new(
input.position().byte_index() - input_start.byte_index(),
)
.unwrap(); // NOTE(emilio): Intentionally using parse_declaration_value rather than // parse_declaration_value_block, since that's what parse_fallback used to do. let (first, last) = parse_declaration_value(
input,
input_start,
references,
missing_closing_characters,
)?;
fallback = Some(VariableFallback {
start: fallback_start,
first_token_type: first,
last_token_type: last,
});
} else { let state = input.state(); // We still need to consume the rest of the potentially-unclosed // tokens, but make sure to not consume tokens that would otherwise be // invalid, by calling reset().
parse_declaration_value_block(
input,
input_start,
references,
missing_closing_characters,
)?;
input.reset(&state);
}
Ok(fallback)
})?;
check_closed!(")");
prev_reference_index = Some(our_ref_index); let reference = &mut references.refs[our_ref_index];
reference.end = input.position().byte_index() - input_start.byte_index() +
missing_closing_characters.len();
reference.fallback = fallback; if is_var {
references.any_var = true;
} else {
references.any_env = true;
}
} else {
nested!();
check_closed!(")");
}
},
Token::ParenthesisBlock => {
nested!();
check_closed!(")");
},
Token::CurlyBracketBlock => {
nested!();
check_closed!("}");
},
Token::SquareBracketBlock => {
nested!();
check_closed!("]");
},
Token::QuotedString(_) => { let token_slice = input.slice_from(token_start); let quote = &token_slice[..1];
debug_assert!(matches!(quote, "\"" | "'")); if !(token_slice.ends_with(quote) && token_slice.len() > 1) {
missing_closing_characters.push_str(quote)
}
},
Token::Ident(ref value) |
Token::AtKeyword(ref value) |
Token::Hash(ref value) |
Token::IDHash(ref value) |
Token::UnquotedUrl(ref value) |
Token::Dimension {
unit: ref value, ..
} => {
references
.non_custom_references
.insert(NonCustomReferences::from_unit(value)); let is_unquoted_url = matches!(token, Token::UnquotedUrl(_)); if value.ends_with("�") && input.slice_from(token_start).ends_with("\\") { // Unescaped backslash at EOF in these contexts is interpreted as U+FFFD // Check the value in case the final backslash was itself escaped. // Serialize as escaped U+FFFD, which is also interpreted as U+FFFD. // (Unescaped U+FFFD would also work, but removing the backslash is annoying.)
missing_closing_characters.push_str("�")
} if is_unquoted_url {
check_closed!(")");
}
},
_ => {},
};
}
Ok((first_token_type, last_token_type))
}
/// A struct that takes care of encapsulating the cascade process for custom properties. pubstruct CustomPropertiesBuilder<'a, 'b: 'a> {
seen: PrecomputedHashSet<&'a Name>,
may_have_cycles: bool,
has_color_scheme: bool,
custom_properties: ComputedCustomProperties,
reverted: PrecomputedHashMap<&'a Name, (CascadePriority, bool)>,
stylist: &'a Stylist,
computed_context: &'a mut computed::Context<'b>,
references_from_non_custom_properties: NonCustomReferenceMap<Vec<Name>>,
}
fn find_non_custom_references(
registration: &PropertyRegistrationData,
value: &VariableValue,
may_have_color_scheme: bool,
is_root_element: bool,
include_universal: bool,
) -> Option<NonCustomReferences> { let dependent_types = registration.syntax.dependent_types(); let may_reference_length = dependent_types.intersects(DependentDataTypes::LENGTH) ||
(include_universal && registration.syntax.is_universal()); if may_reference_length { let value_dependencies = value.references.non_custom_references(is_root_element); if !value_dependencies.is_empty() { return Some(value_dependencies);
}
} if dependent_types.intersects(DependentDataTypes::COLOR) && may_have_color_scheme { // NOTE(emilio): We might want to add a NonCustomReferences::COLOR_SCHEME or something but // it's not really needed for correctness, so for now we use an Option for that to signal // that there might be a dependencies. return Some(NonCustomReferences::empty());
}
None
}
impl<'a, 'b: 'a> CustomPropertiesBuilder<'a, 'b> { /// Create a new builder, inheriting from a given custom properties map. /// /// We expose this publicly mostly for @keyframe blocks. pubfn new_with_properties(
stylist: &'a Stylist,
custom_properties: ComputedCustomProperties,
computed_context: &'a mut computed::Context<'b>,
) -> Self { Self {
seen: PrecomputedHashSet::default(),
reverted: Default::default(),
may_have_cycles: false,
has_color_scheme: false,
custom_properties,
stylist,
computed_context,
references_from_non_custom_properties: NonCustomReferenceMap::default(),
}
}
/// Create a new builder, inheriting from the right style given context. pubfn new(stylist: &'a Stylist, context: &'a mut computed::Context<'b>) -> Self { let is_root_element = context.is_root_element();
let inherited = context.inherited_custom_properties(); let initial_values = stylist.get_custom_property_initial_values(); let properties = ComputedCustomProperties {
inherited: if is_root_element {
debug_assert!(inherited.is_empty());
initial_values.inherited.clone()
} else {
inherited.inherited.clone()
},
non_inherited: initial_values.non_inherited.clone(),
};
// Reuse flags from computing registered custom properties initial values, such as // whether they depend on viewport units.
context
.style()
.add_flags(stylist.get_custom_property_initial_values_flags()); Self::new_with_properties(stylist, properties, context)
}
/// Cascade a given custom property declaration. pubfn cascade(&mutself, declaration: &'a CustomDeclaration, priority: CascadePriority) { let CustomDeclaration { ref name, ref value,
} = *declaration;
let was_already_present = !self.seen.insert(name); if was_already_present { return;
}
if !self.value_may_affect_style(name, value) { return;
}
let map = &mutself.custom_properties; let registration = self.stylist.get_custom_property_registration(&name); match value {
CustomDeclarationValue::Unparsed(unparsed_value) => { // At this point of the cascade we're not guaranteed to have seen the color-scheme // declaration, so need to assume the worst. We could track all system color // keyword tokens + the light-dark() function, but that seems non-trivial / // probably overkill. let may_have_color_scheme = true; // Non-custom dependency is really relevant for registered custom properties // that require computed value of such dependencies. let has_dependency = unparsed_value.references.any_var ||
find_non_custom_references(
registration,
unparsed_value,
may_have_color_scheme, self.computed_context.is_root_element(), /* include_unregistered = */ false,
)
.is_some(); // If the variable value has no references to other properties, perform // substitution here instead of forcing a full traversal in `substitute_all` // afterwards. if !has_dependency { return substitute_references_if_needed_and_apply(
name,
unparsed_value,
map, self.stylist, self.computed_context,
);
} self.may_have_cycles = true; let value = ComputedRegisteredValue::universal(Arc::clone(unparsed_value));
map.insert(registration, name, value);
},
CustomDeclarationValue::Parsed(parsed_value) => { let value = parsed_value.to_computed_value(&self.computed_context);
map.insert(registration, name, value);
},
CustomDeclarationValue::CSSWideKeyword(keyword) => match keyword {
CSSWideKeyword::RevertLayer | CSSWideKeyword::Revert => { let origin_revert = matches!(keyword, CSSWideKeyword::Revert); self.seen.remove(name); self.reverted.insert(name, (priority, origin_revert));
},
CSSWideKeyword::Initial => { // For non-inherited custom properties, 'initial' was handled in value_may_affect_style.
debug_assert!(registration.inherits(), "Should've been handled earlier");
remove_and_insert_initial_value(name, registration, map);
},
CSSWideKeyword::Inherit => { // For inherited custom properties, 'inherit' was handled in value_may_affect_style.
debug_assert!(!registration.inherits(), "Should've been handled earlier"); iflet Some(inherited_value) = self
.computed_context
.inherited_custom_properties()
.non_inherited
.get(name)
{
map.insert(registration, name, inherited_value.clone());
}
}, // handled in value_may_affect_style
CSSWideKeyword::Unset => unreachable!(),
},
}
}
/// Fast check to avoid calling maybe_note_non_custom_dependency in ~all cases. #[inline] pubfn might_have_non_custom_dependency(id: LonghandId, decl: &PropertyDeclaration) -> bool { if id == LonghandId::ColorScheme { returntrue;
} if matches!(id, LonghandId::LineHeight | LonghandId::FontSize) { return matches!(decl, PropertyDeclaration::WithVariables(..));
} false
}
/// Note a non-custom property with variable reference that may in turn depend on that property. /// e.g. `font-size` depending on a custom property that may be a registered property using `em`. pubfn maybe_note_non_custom_dependency(&mutself, id: LonghandId, decl: &PropertyDeclaration) {
debug_assert!(Self::might_have_non_custom_dependency(id, decl)); if id == LonghandId::ColorScheme { // If we might change the color-scheme, we need to defer computation of colors. self.has_color_scheme = true; return;
}
let refs = match decl {
PropertyDeclaration::WithVariables(ref v) => &v.value.variable_value.references,
_ => return,
};
if !refs.any_var { return;
}
// With unit algebra in `calc()`, references aren't limited to `font-size`. // For example, `--foo: 100ex; font-weight: calc(var(--foo) / 1ex);`, // or `--foo: 1em; zoom: calc(var(--foo) * 30px / 2em);` let references = match id {
LonghandId::FontSize => { ifself.computed_context.is_root_element() {
NonCustomReferences::ROOT_FONT_UNITS
} else {
NonCustomReferences::FONT_UNITS
}
},
LonghandId::LineHeight => { ifself.computed_context.is_root_element() {
NonCustomReferences::ROOT_LH_UNITS | NonCustomReferences::ROOT_FONT_UNITS
} else {
NonCustomReferences::LH_UNITS | NonCustomReferences::FONT_UNITS
}
},
_ => return,
};
let variables: Vec<Atom> = refs
.refs
.iter()
.filter_map(|reference| { if !reference.is_var { return None;
} let registration = self
.stylist
.get_custom_property_registration(&reference.name); if !registration
.syntax
.dependent_types()
.intersects(DependentDataTypes::LENGTH)
{ return None;
}
Some(reference.name.clone())
})
.collect();
references.for_each(|idx| { let entry = &mutself.references_from_non_custom_properties[idx]; let was_none = entry.is_none(); let v = entry.get_or_insert_with(|| variables.clone()); if was_none { return;
}
v.extend(variables.iter().cloned());
});
}
fn value_may_affect_style(&self, name: &Name, value: &CustomDeclarationValue) -> bool { let registration = self.stylist.get_custom_property_registration(&name); match *value {
CustomDeclarationValue::CSSWideKeyword(CSSWideKeyword::Inherit) => { // For inherited custom properties, explicit 'inherit' means we // can just use any existing value in the inherited // CustomPropertiesMap. if registration.inherits() { returnfalse;
}
},
CustomDeclarationValue::CSSWideKeyword(CSSWideKeyword::Initial) => { // For non-inherited custom properties, explicit 'initial' means // we can just use any initial value in the registration. if !registration.inherits() { returnfalse;
}
},
CustomDeclarationValue::CSSWideKeyword(CSSWideKeyword::Unset) => { // Explicit 'unset' means we can either just use any existing // value in the inherited CustomPropertiesMap or the initial // value in the registration. returnfalse;
},
_ => {},
}
let existing_value = self.custom_properties.get(registration, &name); let existing_value = match existing_value {
None => { if matches!(value, CustomDeclarationValue::CSSWideKeyword(CSSWideKeyword::Initial)) {
debug_assert!(registration.inherits(), "Should've been handled earlier"); // The initial value of a custom property without a // guaranteed-invalid initial value is the same as it // not existing in the map. if registration.initial_value.is_none() { returnfalse;
}
} returntrue;
},
Some(v) => v,
}; let computed_value = match value {
CustomDeclarationValue::Unparsed(value) => { // Don't bother overwriting an existing value with the same // specified value. iflet Some(existing_value) = existing_value.as_universal() { return existing_value != value;
} if !registration.syntax.is_universal() {
compute_value(
&value.css,
&value.url_data,
registration, self.computed_context,
).ok()
} else {
None
}
},
CustomDeclarationValue::Parsed(value) => {
Some(value.to_computed_value(&self.computed_context))
},
CustomDeclarationValue::CSSWideKeyword(kw) => { match kw {
CSSWideKeyword::Inherit => {
debug_assert!(!registration.inherits(), "Should've been handled earlier"); // existing_value is the registered initial value. // Don't bother adding it to self.custom_properties.non_inherited // if the key is also absent from self.inherited.non_inherited. ifself
.computed_context
.inherited_custom_properties()
.non_inherited
.get(name)
.is_none()
{ returnfalse;
}
},
CSSWideKeyword::Initial => {
debug_assert!(registration.inherits(), "Should've been handled earlier"); // Don't bother overwriting an existing value with the initial value specified in // the registration. iflet Some(initial_value) = self
.stylist
.get_custom_property_initial_values()
.get(registration, name)
{ return existing_value != initial_value;
}
},
CSSWideKeyword::Unset => {
debug_assert!(false, "Should've been handled earlier");
},
CSSWideKeyword::Revert | CSSWideKeyword::RevertLayer => {},
}
None
}
};
/// Computes the map of applicable custom properties, as well as /// longhand properties that are now considered invalid-at-compute time. /// The result is saved into the computed context. /// /// If there was any specified property or non-inherited custom property /// with an initial value, we've created a new map and now we /// need to remove any potential cycles (And marking non-custom /// properties), and wrap it in an arc. /// /// Some registered custom properties may require font-related properties /// be resolved to resolve. If these properties are not resolved at this time, /// `defer` should be set to `Yes`, which will leave such custom properties, /// and other properties referencing them, untouched. These properties are /// returned separately, to be resolved by `build_deferred` to fully resolve /// all custom properties after all necessary non-custom properties are resolved. pubfn build( mutself,
defer: DeferFontRelativeCustomPropertyResolution,
) -> Option<CustomPropertiesMap> { letmut deferred_custom_properties = None; ifself.may_have_cycles { if defer == DeferFontRelativeCustomPropertyResolution::Yes {
deferred_custom_properties = Some(CustomPropertiesMap::default());
} letmut invalid_non_custom_properties = LonghandIdSet::default();
substitute_all(
&mutself.custom_properties,
deferred_custom_properties.as_mut(),
&mut invalid_non_custom_properties, self.has_color_scheme,
&self.seen,
&self.references_from_non_custom_properties, self.stylist, self.computed_context,
); self.computed_context.builder.invalid_non_custom_properties =
invalid_non_custom_properties;
}
self.custom_properties.shrink_to_fit();
// Some pages apply a lot of redundant custom properties, see e.g. // bug 1758974 comment 5. Try to detect the case where the values // haven't really changed, and save some memory by reusing the inherited // map in that case. let initial_values = self.stylist.get_custom_property_initial_values(); self.computed_context.builder.custom_properties = ComputedCustomProperties {
inherited: ifself
.computed_context
.inherited_custom_properties()
.inherited == self.custom_properties.inherited
{ self.computed_context
.inherited_custom_properties()
.inherited
.clone()
} else { self.custom_properties.inherited
},
non_inherited: if initial_values.non_inherited == self.custom_properties.non_inherited {
initial_values.non_inherited.clone()
} else { self.custom_properties.non_inherited
},
};
deferred_custom_properties
}
/// Fully resolve all deferred custom properties, assuming that the incoming context /// has necessary properties resolved. pubfn build_deferred(
deferred: CustomPropertiesMap,
stylist: &Stylist,
computed_context: &mut computed::Context,
) { if deferred.is_empty() { return;
} letmut custom_properties = std::mem::take(&mut computed_context.builder.custom_properties); // Since `CustomPropertiesMap` preserves insertion order, we shouldn't have to worry about // resolving in a wrong order. for (k, v) in deferred.iter() { let Some(v) = v else { continue }; let Some(v) = v.as_universal() else {
unreachable!("Computing should have been deferred!")
};
substitute_references_if_needed_and_apply(
k,
v,
&mut custom_properties,
stylist,
computed_context,
);
}
computed_context.builder.custom_properties = custom_properties;
}
}
/// Resolve all custom properties to either substituted, invalid, or unset /// (meaning we should use the inherited value). /// /// It does cycle dependencies removal at the same time as substitution. fn substitute_all(
custom_properties_map: &mut ComputedCustomProperties, mut deferred_properties_map: Option<&mut CustomPropertiesMap>,
invalid_non_custom_properties: &mut LonghandIdSet,
has_color_scheme: bool,
seen: &PrecomputedHashSet<&Name>,
references_from_non_custom_properties: &NonCustomReferenceMap<Vec<Name>>,
stylist: &Stylist,
computed_context: &computed::Context,
) { // The cycle dependencies removal in this function is a variant // of Tarjan's algorithm. It is mostly based on the pseudo-code // listed in // https://en.wikipedia.org/w/index.php? // title=Tarjan%27s_strongly_connected_components_algorithm&oldid=801728495
/// Struct recording necessary information for each variable. #[derive(Debug)] struct VarInfo { /// The name of the variable. It will be taken to save addref /// when the corresponding variable is popped from the stack. /// This also serves as a mark for whether the variable is /// currently in the stack below.
var: Option<VarType>, /// If the variable is in a dependency cycle, lowlink represents /// a smaller index which corresponds to a variable in the same /// strong connected component, which is known to be accessible /// from this variable. It is not necessarily the root, though.
lowlink: usize,
} /// Context struct for traversing the variable graph, so that we can /// avoid referencing all the fields multiple times. struct Context<'a, 'b: 'a> { /// Number of variables visited. This is used as the order index /// when we visit a new unresolved variable.
count: usize, /// The map from custom property name to its order index.
index_map: PrecomputedHashMap<Name, usize>, /// Mapping from a non-custom dependency to its order index.
non_custom_index_map: NonCustomReferenceMap<usize>, /// Information of each variable indexed by the order index.
var_info: SmallVec<[VarInfo; 5]>, /// The stack of order index of visited variables. It contains /// all unfinished strong connected components.
stack: SmallVec<[usize; 5]>, /// References to non-custom properties in this strongly connected component.
non_custom_references: NonCustomReferences, /// Whether the builder has seen a non-custom color-scheme reference.
has_color_scheme: bool, /// Whether this strongly connected component contains any custom properties involving /// value computation.
contains_computed_custom_property: bool,
map: &'a mut ComputedCustomProperties, /// The stylist is used to get registered properties, and to resolve the environment to /// substitute `env()` variables.
stylist: &'a Stylist, /// The computed context is used to get inherited custom /// properties and compute registered custom properties.
computed_context: &'a computed::Context<'b>, /// Longhand IDs that became invalid due to dependency cycle(s).
invalid_non_custom_properties: &'a mut LonghandIdSet, /// Properties that cannot yet be substituted. Note we store both inherited and /// non-inherited properties in the same map, since we need to make sure we iterate through /// them in the right order.
deferred_properties: Option<&'a mut CustomPropertiesMap>,
}
/// This function combines the traversal for cycle removal and value /// substitution. It returns either a signal None if this variable /// has been fully resolved (to either having no reference or being /// marked invalid), or the order index for the given name. /// /// When it returns, the variable corresponds to the name would be /// in one of the following states: /// * It is still in context.stack, which means it is part of an /// potentially incomplete dependency circle. /// * It has been removed from the map. It can be either that the /// substitution failed, or it is inside a dependency circle. /// When this function removes a variable from the map because /// of dependency circle, it would put all variables in the same /// strong connected component to the set together. /// * It doesn't have any reference, because either this variable /// doesn't have reference at all in specified value, or it has /// been completely resolved. /// * There is no such variable at all. fn traverse<'a, 'b>(
var: VarType,
non_custom_references: &NonCustomReferenceMap<Vec<Name>>,
context: &mut Context<'a, 'b>,
) -> Option<usize> { // Some shortcut checks. let value = match var {
VarType::Custom(ref name) => { let registration = context.stylist.get_custom_property_registration(name); let value = context.map.get(registration, name)?.as_universal()?; let is_root = context.computed_context.is_root_element(); // We need to keep track of potential non-custom-references even on unregistered // properties for cycle-detection purposes. let non_custom_refs = find_non_custom_references(
registration,
value,
context.has_color_scheme,
is_root, /* include_unregistered = */ true,
);
context.non_custom_references |= non_custom_refs.unwrap_or_default(); let has_dependency = value.references.any_var || non_custom_refs.is_some(); // Nothing to resolve. if !has_dependency {
debug_assert!(!value.references.any_env, "Should've been handled earlier"); if !registration.syntax.is_universal() { // We might still need to compute the value if this is not an universal // registration if we thought this had a dependency before but turned out // not to be (due to has_color_scheme, for example). Note that if this was // already computed we would've bailed out in the as_universal() check.
debug_assert!(
registration
.syntax
.dependent_types()
.intersects(DependentDataTypes::COLOR), "How did an unresolved value get here otherwise?",
); let value = value.clone();
substitute_references_if_needed_and_apply(
name,
&value,
&mut context.map,
context.stylist,
context.computed_context,
);
} return None;
}
// Has this variable been visited? match context.index_map.entry(name.clone()) {
Entry::Occupied(entry) => { return Some(*entry.get());
},
Entry::Vacant(entry) => {
entry.insert(context.count);
},
}
context.contains_computed_custom_property |= !registration.syntax.is_universal();
// Hold a strong reference to the value so that we don't // need to keep reference to context.map.
Some(value.clone())
},
VarType::NonCustom(ref non_custom) => { let entry = &mut context.non_custom_index_map[*non_custom]; iflet Some(v) = entry { return Some(*v);
}
*entry = Some(context.count);
None
},
};
// Add new entry to the information table. let index = context.count;
context.count += 1;
debug_assert_eq!(index, context.var_info.len());
context.var_info.push(VarInfo {
var: Some(var.clone()),
lowlink: index,
});
context.stack.push(index);
letmut self_ref = false; letmut lowlink = index; let visit_link =
|var: VarType, context: &mut Context, lowlink: &mut usize, self_ref: &mut bool| { let next_index = match traverse(var, non_custom_references, context) {
Some(index) => index, // There is nothing to do if the next variable has been // fully resolved at this point.
None => { return;
},
}; let next_info = &context.var_info[next_index]; if next_index > index { // The next variable has a larger index than us, so it // must be inserted in the recursive call above. We want // to get its lowlink.
*lowlink = cmp::min(*lowlink, next_info.lowlink);
} elseif next_index == index {
*self_ref = true;
} elseif next_info.var.is_some() { // The next variable has a smaller order index and it is // in the stack, so we are at the same component.
*lowlink = cmp::min(*lowlink, next_index);
}
}; iflet Some(ref v) = value.as_ref() {
debug_assert!(
matches!(var, VarType::Custom(_)), "Non-custom property has references?"
);
// Visit other custom properties... // FIXME: Maybe avoid visiting the same var twice if not needed? for next in &v.references.refs { if !next.is_var { continue;
}
visit_link(
VarType::Custom(next.name.clone()),
context,
&mut lowlink,
&mut self_ref,
);
}
// ... Then non-custom properties.
v.references.non_custom_references.for_each(|r| {
visit_link(VarType::NonCustom(r), context, &mut lowlink, &style='color:red'>mut self_ref);
});
} elseiflet VarType::NonCustom(non_custom) = var { let entry = &non_custom_references[non_custom]; iflet Some(deps) = entry.as_ref() { for d in deps { // Visit any reference from this non-custom property to custom properties.
visit_link(
VarType::Custom(d.clone()),
context,
&mut lowlink,
&mut self_ref,
);
}
}
}
context.var_info[index].lowlink = lowlink; if lowlink != index { // This variable is in a loop, but it is not the root of // this strong connected component. We simply return for // now, and the root would remove it from the map. // // This cannot be removed from the map here, because // otherwise the shortcut check at the beginning of this // function would return the wrong value. return Some(index);
}
// This is the root of a strong-connected component. letmut in_loop = self_ref; let name;
let handle_variable_in_loop = |name: &Name, context: &mut Context<'a, 'b>| { if context.contains_computed_custom_property { // These non-custom properties can't become invalid-at-compute-time from // cyclic dependencies purely consisting of non-registered properties. if context
.non_custom_references
.intersects(NonCustomReferences::FONT_UNITS | NonCustomReferences::ROOT_FONT_UNITS)
{
context
.invalid_non_custom_properties
.insert(LonghandId::FontSize);
} if context
.non_custom_references
.intersects(NonCustomReferences::LH_UNITS | NonCustomReferences::ROOT_LH_UNITS)
{
context
.invalid_non_custom_properties
.insert(LonghandId::LineHeight);
}
} // This variable is in loop. Resolve to invalid.
handle_invalid_at_computed_value_time(name, context.map, context.computed_context);
}; loop { let var_index = context
.stack
.pop()
.expect("The current variable should still be in stack"); let var_info = &mut context.var_info[var_index]; // We should never visit the variable again, so it's safe // to take the name away, so that we don't do additional // reference count. let var_name = var_info
.var
.take()
.expect("Variable should not be poped from stack twice"); if var_index == index {
name = match var_name {
VarType::Custom(name) => name, // At the root of this component, and it's a non-custom // reference - we have nothing to substitute, so // it's effectively resolved.
VarType::NonCustom(..) => return None,
}; break;
} iflet VarType::Custom(name) = var_name { // Anything here is in a loop which can traverse to the // variable we are handling, so it's invalid at // computed-value time.
handle_variable_in_loop(&name, context);
}
in_loop = true;
} // We've gotten to the root of this strongly connected component, so clear // whether or not it involved non-custom references. // It's fine to track it like this, because non-custom properties currently // being tracked can only participate in any loop only once. if in_loop {
handle_variable_in_loop(&name, context);
context.non_custom_references = NonCustomReferences::default(); return None;
}
iflet Some(ref v) = value { let registration = context.stylist.get_custom_property_registration(&name);
letmut defer = false; iflet Some(refmut deferred) = context.deferred_properties { // We need to defer this property if it has a non-custom property dependency, or // any variable that it references is already deferred.
defer = find_non_custom_references(
registration,
v,
context.has_color_scheme,
context.computed_context.is_root_element(), /* include_unregistered = */ false,
)
.is_some() ||
v.references.refs.iter().any(|reference| {
reference.is_var && deferred.get(&reference.name).is_some()
});
if defer { let value = ComputedRegisteredValue::universal(Arc::clone(v));
deferred.insert(&name, value);
context.map.remove(registration, &name);
}
}
// If there are no var references we should already be computed and substituted by now. if !defer && v.references.any_var {
substitute_references_if_needed_and_apply(
&name,
v,
&mut context.map,
context.stylist,
context.computed_context,
);
}
}
context.non_custom_references = NonCustomReferences::default();
// All resolved, so return the signal value.
None
}
// Note that `seen` doesn't contain names inherited from our parent, but // those can't have variable references (since we inherit the computed // variables) so we don't want to spend cycles traversing them anyway. for name in seen { letmut context = Context {
count: 0,
index_map: PrecomputedHashMap::default(),
non_custom_index_map: NonCustomReferenceMap::default(),
stack: SmallVec::new(),
var_info: SmallVec::new(),
map: custom_properties_map,
non_custom_references: NonCustomReferences::default(),
has_color_scheme,
stylist,
computed_context,
invalid_non_custom_properties,
deferred_properties: deferred_properties_map.as_deref_mut(),
contains_computed_custom_property: false,
};
traverse(
VarType::Custom((*name).clone()),
references_from_non_custom_properties,
&mut context,
);
}
}
// See https://drafts.csswg.org/css-variables-2/#invalid-at-computed-value-time fn handle_invalid_at_computed_value_time(
name: &Name,
custom_properties: &mut ComputedCustomProperties,
computed_context: &computed::Context,
) { let stylist = computed_context.style().stylist.unwrap(); let registration = stylist.get_custom_property_registration(&name); if !registration.syntax.is_universal() { // For the root element, inherited maps are empty. We should just // use the initial value if any, rather than removing the name. if registration.inherits() && !computed_context.is_root_element() { let inherited = computed_context.inherited_custom_properties(); iflet Some(value) = inherited.get(registration, name) {
custom_properties.insert(registration, name, value.clone()); return;
}
} elseiflet Some(ref initial_value) = registration.initial_value { iflet Ok(initial_value) = compute_value(
&initial_value.css,
&initial_value.url_data,
registration,
computed_context,
) {
custom_properties.insert(registration, name, initial_value); return;
}
}
}
custom_properties.remove(registration, name);
}
/// Replace `var()` and `env()` functions in a pre-existing variable value. fn substitute_references_if_needed_and_apply(
name: &Name,
value: &Arc<VariableValue>,
custom_properties: &mut ComputedCustomProperties,
stylist: &Stylist,
computed_context: &computed::Context,
) { let registration = stylist.get_custom_property_registration(&name); if !value.has_references() && registration.syntax.is_universal() { // Trivial path: no references and no need to compute the value, just apply it directly. let computed_value = ComputedRegisteredValue::universal(Arc::clone(value));
custom_properties.insert(registration, name, computed_value); return;
}
let inherited = computed_context.inherited_custom_properties(); let url_data = &value.url_data; let value = match substitute_internal(
value,
custom_properties,
stylist,
registration,
computed_context,
) {
Ok(v) => v,
Err(..) => {
handle_invalid_at_computed_value_time(name, custom_properties, computed_context); return;
},
}
.into_value(url_data);
// If variable fallback results in a wide keyword, deal with it now.
{ let css = value.to_variable_value().css; letmut input = ParserInput::new(&css); letmut input = Parser::new(&mut input);
let substitution = substitute_one_reference(
css,
url_data,
custom_properties,
reference,
stylist,
computed_context,
references,
)?; let substitution = substitution.into_universal();
// Optimize the property: var(--...) case to avoid allocating at all. if reference.start == start && reference.end == end && registration.syntax.is_universal() { return Ok(Substitution::Universal(substitution));
}
substituted.push(
&substitution.css,
substitution.first_token_type,
substitution.last_token_type,
)?;
next_token_type = reference.next_token_type;
cur_pos = reference.end;
} // Push the rest of the value if needed. if cur_pos != end {
substituted.push(&css[cur_pos..end], next_token_type, last_token_type)?;
} if !registration.syntax.is_universal() { let computed_value =
compute_value(&substituted.css, url_data, registration, computed_context)?; return Ok(Substitution::Computed(computed_value));
}
Ok(Substitution::from_value(substituted))
}
fn substitute_one_reference<'a>(
css: &'a str,
url_data: &UrlExtraData,
custom_properties: &'a ComputedCustomProperties,
reference: &VarOrEnvReference,
stylist: &Stylist,
computed_context: &computed::Context,
references: &mut std::iter::Peekable<std::slice::Iter<VarOrEnvReference>>,
) -> Result<Substitution<'a>, ()> { let registration; if reference.is_var {
registration = stylist.get_custom_property_registration(&reference.name); iflet Some(v) = custom_properties.get(registration, &reference.name) { #[cfg(debug_assertions)]
debug_assert!(v.is_parsed(registration), "Should be already computed"); if registration.syntax.is_universal() { // Skip references that are inside the outer variable (in fallback for example). while references
.next_if(|next_ref| next_ref.end <= reference.end)
.is_some()
{}
} else { // We need to validate the fallback if any, since invalid fallback should // invalidate the whole variable. iflet Some(ref fallback) = reference.fallback { let _ = do_substitute_chunk(
css,
fallback.start.get(),
reference.end - 1, // Don't include the closing parenthesis.
fallback.first_token_type,
fallback.last_token_type,
url_data,
custom_properties,
registration,
stylist,
computed_context,
references,
)?;
}
} return Ok(Substitution::Computed(v.clone()));
}
} else {
registration = PropertyRegistrationData::unregistered(); let device = stylist.device(); iflet Some(v) = device.environment().get(&reference.name, device, url_data) { while references
.next_if(|next_ref| next_ref.end <= reference.end)
.is_some()
{} return Ok(Substitution::from_value(v));
}
}
let Some(ref fallback) = reference.fallback else { return Err(());
};
do_substitute_chunk(
css,
fallback.start.get(),
reference.end - 1, // Skip the closing parenthesis of the reference value.
fallback.first_token_type,
fallback.last_token_type,
url_data,
custom_properties,
registration,
stylist,
computed_context,
references,
)
}
/// Replace var() and env() functions, returning the resulting CSS string. pubfn substitute<'a>(
variable_value: &'a VariableValue,
custom_properties: &'a ComputedCustomProperties,
stylist: &Stylist,
computed_context: &computed::Context,
) -> Result<Cow<'a, str>, ()> {
debug_assert!(variable_value.has_references()); let v = substitute_internal(
variable_value,
custom_properties,
stylist,
PropertyRegistrationData::unregistered(),
computed_context,
)?; let v = v.into_universal();
Ok(v.css)
}
Messung V0.5 in Prozent
¤ Diese beiden folgenden Angebotsgruppen bietet das Unternehmen0.67Angebot
(Wie Sie bei der Firma Beratungs- und Dienstleistungen beauftragen können 2026-06-18)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.