mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 02:54:54 +03:00
06ed0dfcc1
We mistakenly did not add the clang-format linter to the new repo's CI, and some unformatted code made its way into the repo.
27 lines
523 B
C++
27 lines
523 B
C++
/*
|
|
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/Bindings/ValidityStatePrototype.h>
|
|
#include <LibWeb/HTML/ValidityState.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
JS_DEFINE_ALLOCATOR(ValidityState);
|
|
|
|
ValidityState::ValidityState(JS::Realm& realm)
|
|
: PlatformObject(realm)
|
|
{
|
|
}
|
|
|
|
void ValidityState::initialize(JS::Realm& realm)
|
|
{
|
|
Base::initialize(realm);
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(ValidityState);
|
|
}
|
|
|
|
}
|