1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 22:25:07 +00:00

LibHTML: Support rendering <img src> with file:// URLs

We can now show images loaded from local file:// URLs. Pretty neat :^)
This commit is contained in:
Andreas Kling 2019-10-05 23:41:14 +02:00
parent 9858e2632c
commit 958b395418
3 changed files with 27 additions and 1 deletions

View file

@ -1,5 +1,6 @@
#pragma once
#include <LibDraw/GraphicsBitmap.h>
#include <LibHTML/DOM/HTMLElement.h>
class HTMLImageElement : public HTMLElement {
@ -10,6 +11,10 @@ public:
String alt() const { return attribute("alt"); }
String src() const { return attribute("src"); }
const GraphicsBitmap* bitmap() const;
private:
virtual RefPtr<LayoutNode> create_layout_node(const StyleResolver&, const StyleProperties* parent_style) const override;
mutable RefPtr<GraphicsBitmap> m_bitmap;
};