mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
Everywhere: Clean up AD-HOC and FIXME comments without colons
This commit is contained in:
parent
edccb92da7
commit
100f37995f
Notes:
github-actions[bot]
2025-11-14 08:18:37 +00:00
Author: https://github.com/Psychpsyo
Commit: 100f37995f
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6810
27 changed files with 36 additions and 36 deletions
|
|
@ -50,7 +50,7 @@ void MathMLMspaceElement::apply_presentational_hints(GC::Ref<CSS::CascadedProper
|
|||
// If the height attribute is absent, invalid or a percentage then the requested line-ascent is 0. Otherwise the
|
||||
// requested line-ascent is the resolved value of the height attribute, clamping negative values to 0.
|
||||
auto height_value = parse_non_percentage_value(AttributeNames::height);
|
||||
// FIXME set the line-ascent
|
||||
// FIXME: set the line-ascent
|
||||
|
||||
// If both the height and depth attributes are present, valid and not a percentage then they are used as a
|
||||
// presentational hint setting the element's height property to the concatenation of the
|
||||
|
|
@ -60,7 +60,7 @@ void MathMLMspaceElement::apply_presentational_hints(GC::Ref<CSS::CascadedProper
|
|||
auto depth_value = parse_non_percentage_value(AttributeNames::depth);
|
||||
|
||||
if (height_value && depth_value) {
|
||||
// FIXME set the presentational hint to calculate height + depth
|
||||
// FIXME: set the presentational hint to calculate height + depth
|
||||
} else if (height_value) {
|
||||
cascaded_properties->set_property_from_presentational_hint(CSS::PropertyID::Height, height_value.release_nonnull());
|
||||
} else if (depth_value) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue