summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Bindings/WindowObject.cpp
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-09-12 17:10:27 +0100
committerAndreas Kling <kling@serenityos.org>2021-09-12 18:25:45 +0200
commit51da5d03da8e462ef91a331453c345c88f961726 (patch)
tree457817035c36f68d1ff28cc04b98bdf873866301 /Userland/Libraries/LibWeb/Bindings/WindowObject.cpp
parent4155cc7ed53b1339b772640eaf65f1386f8a7bda (diff)
downloadserenity-51da5d03da8e462ef91a331453c345c88f961726.zip
LibWeb: Implement window.matchMedia()
Diffstat (limited to 'Userland/Libraries/LibWeb/Bindings/WindowObject.cpp')
-rw-r--r--Userland/Libraries/LibWeb/Bindings/WindowObject.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Bindings/WindowObject.cpp b/Userland/Libraries/LibWeb/Bindings/WindowObject.cpp
index 640024fff8..01e82d0d09 100644
--- a/Userland/Libraries/LibWeb/Bindings/WindowObject.cpp
+++ b/Userland/Libraries/LibWeb/Bindings/WindowObject.cpp
@@ -21,6 +21,7 @@
#include <LibWeb/Bindings/EventWrapperFactory.h>
#include <LibWeb/Bindings/HistoryWrapper.h>
#include <LibWeb/Bindings/LocationObject.h>
+#include <LibWeb/Bindings/MediaQueryListWrapper.h>
#include <LibWeb/Bindings/NavigatorObject.h>
#include <LibWeb/Bindings/NodeWrapperFactory.h>
#include <LibWeb/Bindings/PerformanceWrapper.h>
@@ -78,6 +79,7 @@ void WindowObject::initialize_global_object()
define_native_function("btoa", btoa, 1, attr);
define_native_function("getComputedStyle", get_computed_style, 1, attr);
+ define_native_function("matchMedia", match_media, 1, attr);
// FIXME: These properties should be [Replaceable] according to the spec, but [Writable+Configurable] is the closest we have.
define_native_accessor("scrollX", scroll_x_getter, {}, attr);
@@ -483,6 +485,17 @@ JS_DEFINE_NATIVE_FUNCTION(WindowObject::get_computed_style)
return wrap(global_object, impl->get_computed_style(static_cast<ElementWrapper*>(object)->impl()));
}
+JS_DEFINE_NATIVE_FUNCTION(WindowObject::match_media)
+{
+ auto* impl = impl_from(vm, global_object);
+ if (!impl)
+ return {};
+ auto media = vm.argument(0).to_string(global_object);
+ if (vm.exception())
+ return {};
+ return wrap(global_object, impl->match_media(move(media)));
+}
+
// https://www.w3.org/TR/cssom-view/#dom-window-scrollx
JS_DEFINE_NATIVE_GETTER(WindowObject::scroll_x_getter)
{