Bladeren bron

LibWeb: Log a FIXME when unimplemented computed style is requested

This will help us know which properties to compute next. :^)
Andreas Kling 3 jaren geleden
bovenliggende
commit
a72fd78713
1 gewijzigde bestanden met toevoegingen van 1 en 0 verwijderingen
  1. 1 0
      Userland/Libraries/LibWeb/CSS/ComputedCSSStyleDeclaration.cpp

+ 1 - 0
Userland/Libraries/LibWeb/CSS/ComputedCSSStyleDeclaration.cpp

@@ -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 {};
     }
     }
 }
 }