mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 08:03:21 +00:00
17 lines
338 B
C++
17 lines
338 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2022, the SerenityOS developers.
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibWeb/HTML/HTMLOptionsCollection.h>
|
||
|
|
||
|
namespace Web::HTML {
|
||
|
|
||
|
HTMLOptionsCollection::HTMLOptionsCollection(DOM::ParentNode& root, Function<bool(DOM::Element const&)> filter)
|
||
|
: DOM::HTMLCollection(root, move(filter))
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|