1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

LibWeb: Hide uninteresting whitespace text nodes from DOM inspector

Use a simple heuristic to exclude uninteresting whitespace and
de-clutter the inspector's DOM tree.

Uninteresting whitespace is currently one of these:
- Non-rendered whitespace-only text nodes
- Rendered whitespace-only text nodes between block-level elements
This commit is contained in:
Andreas Kling 2021-11-02 19:20:57 +01:00
parent b83e3fd01d
commit 5db51d85a3
2 changed files with 21 additions and 0 deletions

View file

@ -202,6 +202,8 @@ public:
NonnullRefPtr<Node> get_root_node(GetRootNodeOptions const& options = {});
bool is_uninteresting_whitespace_node() const;
protected:
Node(Document&, NodeType);