mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-28 05:07:35 +00:00
LibWeb/CSS: Remove debug logging I left in by accident
This commit is contained in:
parent
d86bcc795d
commit
d55626dc32
Notes:
github-actions[bot]
2025-08-04 09:53:04 +00:00
Author: https://github.com/AtkinsSJ
Commit: d55626dc32
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5576
1 changed files with 1 additions and 3 deletions
|
@ -345,10 +345,8 @@ Vector<ComponentValue> substitute_arbitrary_substitution_functions(DOM::Abstract
|
||||||
Vector<ComponentValue> new_values;
|
Vector<ComponentValue> new_values;
|
||||||
TokenStream source { values };
|
TokenStream source { values };
|
||||||
auto maybe_error = substitute_arbitrary_substitution_functions_step_2(element, guarded_contexts, source, new_values);
|
auto maybe_error = substitute_arbitrary_substitution_functions_step_2(element, guarded_contexts, source, new_values);
|
||||||
if (maybe_error.is_error()) {
|
if (maybe_error.is_error())
|
||||||
dbgln_if(CSS_PARSER_DEBUG, "{} (context? {})", maybe_error.release_error(), context.map([](auto& it) { return it.to_string(); }));
|
|
||||||
return { ComponentValue { GuaranteedInvalidValue {} } };
|
return { ComponentValue { GuaranteedInvalidValue {} } };
|
||||||
}
|
|
||||||
|
|
||||||
// 3. If context is marked as a cyclic substitution context, return the guaranteed-invalid value.
|
// 3. If context is marked as a cyclic substitution context, return the guaranteed-invalid value.
|
||||||
// NOTE: Nested arbitrary substitution functions may have marked context as cyclic in step 2.
|
// NOTE: Nested arbitrary substitution functions may have marked context as cyclic in step 2.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue