mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-01 15:18:06 +00:00
LibWeb: Remove tiny-OOM handling from dump code
This commit is contained in:
parent
ebe1dc6dcd
commit
5cc75d4de4
Notes:
github-actions[bot]
2024-10-16 06:33:30 +00:00
Author: https://github.com/AtkinsSJ
Commit: 5cc75d4de4
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1817
3 changed files with 34 additions and 45 deletions
|
@ -20,16 +20,16 @@ void dump_tree(StringBuilder&, Layout::Node const&, bool show_box_model = false,
|
|||
void dump_tree(Layout::Node const&, bool show_box_model = true, bool show_specified_style = false);
|
||||
void dump_tree(StringBuilder&, Painting::Paintable const&, bool colorize = false, int indent = 0);
|
||||
void dump_tree(Painting::Paintable const&);
|
||||
ErrorOr<void> dump_sheet(StringBuilder&, CSS::StyleSheet const&);
|
||||
ErrorOr<void> dump_sheet(CSS::StyleSheet const&);
|
||||
ErrorOr<void> dump_rule(StringBuilder&, CSS::CSSRule const&, int indent_levels = 0);
|
||||
ErrorOr<void> dump_rule(CSS::CSSRule const&);
|
||||
void dump_sheet(StringBuilder&, CSS::StyleSheet const&);
|
||||
void dump_sheet(CSS::StyleSheet const&);
|
||||
void dump_rule(StringBuilder&, CSS::CSSRule const&, int indent_levels = 0);
|
||||
void dump_rule(CSS::CSSRule const&);
|
||||
void dump_font_face_rule(StringBuilder&, CSS::CSSFontFaceRule const&, int indent_levels = 0);
|
||||
void dump_import_rule(StringBuilder&, CSS::CSSImportRule const&, int indent_levels = 0);
|
||||
ErrorOr<void> dump_media_rule(StringBuilder&, CSS::CSSMediaRule const&, int indent_levels = 0);
|
||||
ErrorOr<void> dump_style_rule(StringBuilder&, CSS::CSSStyleRule const&, int indent_levels = 0);
|
||||
ErrorOr<void> dump_supports_rule(StringBuilder&, CSS::CSSSupportsRule const&, int indent_levels = 0);
|
||||
ErrorOr<void> dump_namespace_rule(StringBuilder&, CSS::CSSNamespaceRule const&, int indent_levels = 0);
|
||||
void dump_media_rule(StringBuilder&, CSS::CSSMediaRule const&, int indent_levels = 0);
|
||||
void dump_style_rule(StringBuilder&, CSS::CSSStyleRule const&, int indent_levels = 0);
|
||||
void dump_supports_rule(StringBuilder&, CSS::CSSSupportsRule const&, int indent_levels = 0);
|
||||
void dump_namespace_rule(StringBuilder&, CSS::CSSNamespaceRule const&, int indent_levels = 0);
|
||||
void dump_layer_block_rule(StringBuilder&, CSS::CSSLayerBlockRule const&, int indent_levels = 0);
|
||||
void dump_layer_statement_rule(StringBuilder&, CSS::CSSLayerStatementRule const&, int indent_levels = 0);
|
||||
void dump_selector(StringBuilder&, CSS::Selector const&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue