LibWeb: Make DOM inspector overlay rects a little nicer

Instead of just the outline, fill them with some semi-transparent color.
Also add tag name, ID, classes and coordinates to the little tooltip.
Finally, use the border box instead of the context box for metrics,
same as other browsers.
This commit is contained in:
Andreas Kling 2022-02-26 08:18:14 +01:00
commit 784dbdef8e
Notes: sideshowbarker 2024-07-17 18:15:32 +09:00
3 changed files with 42 additions and 11 deletions

View file

@ -208,6 +208,8 @@ public:
bool is_uninteresting_whitespace_node() const;
String debug_description() const;
protected:
Node(Document&, NodeType);