Browse Source

LibWeb: Print unimplemented calc() expressions in the debug log

Andreas Kling 2 years ago
parent
commit
062b8e5957
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Libraries/LibWeb/CSS/StyleComputer.cpp

+ 1 - 1
Userland/Libraries/LibWeb/CSS/StyleComputer.cpp

@@ -751,7 +751,7 @@ bool StyleComputer::expand_unresolved_values(DOM::Element& element, StringView p
                         continue;
                     }
                     default:
-                        dbgln("FIXME: Unimplement calc() expansion in StyleComputer");
+                        dbgln("FIXME: Unimplemented calc() expansion: {}", calc_value->to_string());
                         break;
                     }
                 }