LibWeb: Allow loading of SVGs in ImageResource

This will allow for SVGs to be loaded when used in CSS rules.
This commit is contained in:
PrestonLTaylor 2023-06-04 18:33:12 +01:00 committed by Andreas Kling
commit 080b4e5e27
Notes: sideshowbarker 2024-07-16 22:22:13 +09:00
3 changed files with 47 additions and 2 deletions

View file

@ -74,6 +74,8 @@ protected:
explicit Resource(Type, LoadRequest const&);
Resource(Type, Resource&);
LoadRequest request() const { return m_request; }
private:
LoadRequest m_request;
ByteBuffer m_encoded_data;