mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:07:44 +00:00
LibWeb: Refactor SVG files into their own directory; follow spec layout
This commit is contained in:
parent
2e73082203
commit
b1299f972c
17 changed files with 386 additions and 172 deletions
|
@ -56,6 +56,7 @@
|
|||
#include <LibWeb/Origin.h>
|
||||
#include <LibWeb/PageView.h>
|
||||
#include <LibWeb/Parser/CSSParser.h>
|
||||
#include <LibWeb/SVG/TagNames.h>
|
||||
#include <stdio.h>
|
||||
|
||||
namespace Web {
|
||||
|
@ -69,6 +70,7 @@ Document::Document(const URL& url)
|
|||
{
|
||||
HTML::AttributeNames::initialize();
|
||||
HTML::TagNames::initialize();
|
||||
SVG::TagNames::initialize();
|
||||
|
||||
m_style_update_timer = Core::Timer::create_single_shot(0, [this] {
|
||||
update_style();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue