diff --git a/Userland/Libraries/LibWeb/DOM/Window.cpp b/Userland/Libraries/LibWeb/DOM/Window.cpp index 45e544f140..a3c47f081c 100644 --- a/Userland/Libraries/LibWeb/DOM/Window.cpp +++ b/Userland/Libraries/LibWeb/DOM/Window.cpp @@ -188,7 +188,7 @@ i32 Window::request_animation_frame(JS::FunctionObject& js_callback) auto callback = request_animation_frame_driver().add([this, handle = JS::make_handle(&js_callback)](i32 id) mutable { auto& function = *handle.cell(); auto& vm = function.vm(); - (void)vm.call(function, JS::js_undefined(), JS::Value((double)Core::DateTime::now().timestamp())); + (void)vm.call(function, JS::js_undefined(), JS::Value(performance().now())); if (vm.exception()) vm.clear_exception(); m_request_animation_frame_callbacks.remove(id);