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

LibWeb: Add some iteration helpers to LayoutNode

- for_each_child_of_type<T>
- previous_sibling_of_type<T>
This commit is contained in:
Andreas Kling 2020-06-09 20:42:11 +02:00
parent f2d40ac2b2
commit b4d4d6b32a
2 changed files with 100 additions and 60 deletions

View file

@ -47,8 +47,10 @@ class HTMLImageElement;
class HTMLScriptElement;
class PageView;
class ImageData;
class LayoutBlock;
class LayoutDocument;
class LayoutNode;
class LayoutNodeWithStyle;
class LoadRequest;
class MouseEvent;
class Node;