1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 16:47:44 +00:00

LibWeb: Move Attribute into the DOM namespace

This commit is contained in:
Andreas Kling 2021-09-16 00:51:48 +02:00
parent 2d4650714f
commit cb895edad4
3 changed files with 9 additions and 9 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -8,7 +8,7 @@
#include <AK/FlyString.h>
namespace Web {
namespace Web::DOM {
class Attribute {
public: