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