Serenity Operating System
at master 17 lines 416 B view raw
1/* 2 * Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org> 3 * 4 * SPDX-License-Identifier: BSD-2-Clause 5 */ 6 7#include <LibWeb/Layout/SVGGraphicsBox.h> 8#include <LibWeb/Painting/StackingContext.h> 9 10namespace Web::Layout { 11 12SVGGraphicsBox::SVGGraphicsBox(DOM::Document& document, SVG::SVGGraphicsElement& element, NonnullRefPtr<CSS::StyleProperties> properties) 13 : SVGBox(document, element, properties) 14{ 15} 16 17}