123456789101112 |
- #include <LibGUI/GPainter.h>
- #include <LibHTML/Layout/LayoutText.h>
- #include <LibHTML/Layout/LineBoxFragment.h>
- #include <LibHTML/RenderingContext.h>
- void LineBoxFragment::render(RenderingContext& context)
- {
- if (layout_node().is_text()) {
- auto& layout_text = static_cast<const LayoutText&>(layout_node());
- layout_text.render_fragment(context, *this);
- }
- }
|