mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-24 02:09:28 +00:00
LibHTML: Load image resource when src attribute is set
This commit is contained in:
committed by
Andreas Kling
parent
ef8b754a46
commit
1ef53be2f3
@@ -12,6 +12,23 @@ HTMLImageElement::~HTMLImageElement()
|
||||
{
|
||||
}
|
||||
|
||||
void HTMLImageElement::parse_attribute(const String& name, const String& value)
|
||||
{
|
||||
if (name == "src")
|
||||
load_image(value);
|
||||
}
|
||||
|
||||
void HTMLImageElement::load_image(const String& src)
|
||||
{
|
||||
URL src_url = document().complete_url(src);
|
||||
if (src_url.protocol() == "file") {
|
||||
m_bitmap = GraphicsBitmap::load_from_file(src_url.path());
|
||||
} else {
|
||||
// FIXME: Implement! This whole thing should be at a different layer though..
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
}
|
||||
|
||||
RefPtr<LayoutNode> HTMLImageElement::create_layout_node(const StyleResolver& resolver, const StyleProperties* parent_style) const
|
||||
{
|
||||
auto style = resolver.resolve_style(*this, parent_style);
|
||||
@@ -26,15 +43,5 @@ RefPtr<LayoutNode> HTMLImageElement::create_layout_node(const StyleResolver& res
|
||||
|
||||
const GraphicsBitmap* HTMLImageElement::bitmap() const
|
||||
{
|
||||
if (!m_bitmap) {
|
||||
URL src_url = document().complete_url(this->src());
|
||||
if (src_url.protocol() == "file") {
|
||||
m_bitmap = GraphicsBitmap::load_from_file(src_url.path());
|
||||
} else {
|
||||
// FIXME: Implement! This whole thing should be at a different layer though..
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
}
|
||||
|
||||
return m_bitmap;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user