summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp')
-rw-r--r--Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp b/Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp
new file mode 100644
index 0000000000..4d09d8a947
--- /dev/null
+++ b/Userland/Libraries/LibWeb/Layout/SVGFormattingContext.cpp
@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+
+#include <AK/Format.h>
+#include <LibWeb/Layout/SVGFormattingContext.h>
+#include <LibWeb/Layout/SVGSVGBox.h>
+
+namespace Web::Layout {
+
+SVGFormattingContext::SVGFormattingContext(Box& box, FormattingContext* parent)
+ : FormattingContext(box, parent)
+{
+}
+
+SVGFormattingContext::~SVGFormattingContext()
+{
+}
+
+void SVGFormattingContext::run(Box&, LayoutMode)
+{
+}
+
+}