mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
28 lines
997 B
C++
28 lines
997 B
C++
/*
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Forward.h>
|
|
#include <LibWeb/Forward.h>
|
|
|
|
namespace Web {
|
|
|
|
void dump_tree(StringBuilder&, const DOM::Node&);
|
|
void dump_tree(const DOM::Node&);
|
|
void dump_tree(StringBuilder&, const Layout::Node&, bool show_box_model = false, bool show_specified_style = false, bool colorize = false);
|
|
void dump_tree(const Layout::Node&, bool show_box_model = false, bool show_specified_style = false);
|
|
void dump_sheet(StringBuilder&, const CSS::StyleSheet&);
|
|
void dump_sheet(const CSS::StyleSheet&);
|
|
void dump_rule(StringBuilder&, const CSS::CSSRule&);
|
|
void dump_rule(const CSS::CSSRule&);
|
|
void dump_style_rule(StringBuilder&, const CSS::CSSStyleRule&);
|
|
void dump_import_rule(StringBuilder&, const CSS::CSSImportRule&);
|
|
void dump_selector(StringBuilder&, const CSS::Selector&);
|
|
void dump_selector(const CSS::Selector&);
|
|
|
|
}
|