1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 17:14:58 +00:00

LibHTML: Load image resource when src attribute is set

This commit is contained in:
Conrad Pankoff 2019-10-06 23:03:51 +11:00 committed by Andreas Kling
parent ef8b754a46
commit 1ef53be2f3
2 changed files with 21 additions and 10 deletions

View file

@ -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;
}