diff options
author | Andreas Kling <kling@serenityos.org> | 2022-02-06 14:17:42 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-06 16:22:58 +0100 |
commit | 5dd4b3eaaa9a820b8989fe9b9ca1af6b92fe762b (patch) | |
tree | e4deaa6d9fd70291644e0de3b73bafce6f2fc310 /AK | |
parent | 3caac65cc80f6daeeacb3aac6a29d15bde788c4b (diff) | |
download | serenity-5dd4b3eaaa9a820b8989fe9b9ca1af6b92fe762b.zip |
LibWeb: Put ResolvedCSSStyleDeclaration debug spam behind a macro
Blowing up the debug console with a fajillion FIXME's whenever you
navigate in the web inspector is no fun.
Diffstat (limited to 'AK')
-rw-r--r-- | AK/Debug.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/AK/Debug.h.in b/AK/Debug.h.in index e34fb6c0fb..894e5354a2 100644 --- a/AK/Debug.h.in +++ b/AK/Debug.h.in @@ -250,6 +250,10 @@ #cmakedefine01 LEXER_DEBUG #endif +#ifndef LIBWEB_CSS_DEBUG +#cmakedefine01 LIBWEB_CSS_DEBUG +#endif + #ifndef LINE_EDITOR_DEBUG #cmakedefine01 LINE_EDITOR_DEBUG #endif |