diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-09-28 02:11:55 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-28 16:51:27 +0200 |
commit | 01417c82c585162ec516736213245a347c4a3c01 (patch) | |
tree | d666dbf2c9904038b9544156465c807b5f4d147c /Userland/Libraries/LibWeb/CMakeLists.txt | |
parent | 14e99b9b68da7de3bf4c4e5f8c932de99e8572c8 (diff) | |
download | serenity-01417c82c585162ec516736213245a347c4a3c01.zip |
LibWeb: Make URLSearchParams iterable
This uses the new support for the iterable IDL property.
Diffstat (limited to 'Userland/Libraries/LibWeb/CMakeLists.txt')
-rw-r--r-- | Userland/Libraries/LibWeb/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/CMakeLists.txt b/Userland/Libraries/LibWeb/CMakeLists.txt index c45b580383..acadf7a0b1 100644 --- a/Userland/Libraries/LibWeb/CMakeLists.txt +++ b/Userland/Libraries/LibWeb/CMakeLists.txt @@ -243,6 +243,7 @@ set(SOURCES UIEvents/MouseEvent.cpp URL/URL.cpp URL/URLSearchParams.cpp + URL/URLSearchParamsIterator.cpp WebAssembly/WebAssemblyInstanceConstructor.cpp WebAssembly/WebAssemblyInstanceObject.cpp WebAssembly/WebAssemblyInstanceObjectPrototype.cpp @@ -458,7 +459,7 @@ libweb_js_wrapper(XHR/ProgressEvent) libweb_js_wrapper(XHR/XMLHttpRequest) libweb_js_wrapper(XHR/XMLHttpRequestEventTarget) libweb_js_wrapper(URL/URL) -libweb_js_wrapper(URL/URLSearchParams) +libweb_js_wrapper(URL/URLSearchParams ITERABLE) add_custom_command( OUTPUT CSS/PropertyID.h |