mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 01:08:11 +00:00
LibWeb: Log a FIXME when unimplemented computed style is requested
This will help us know which properties to compute next. :^)
This commit is contained in:
parent
8b27bc078c
commit
a72fd78713
1 changed files with 1 additions and 0 deletions
|
@ -98,6 +98,7 @@ Optional<StyleProperty> ComputedCSSStyleDeclaration::property(PropertyID propert
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
dbgln("FIXME: Computed style for the '{}' property was requested", string_from_property_id(property_id));
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue