summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/XHR/XMLHttpRequestEventTarget.cpp
blob: 24f372cc661db41abf445c58481e1ede8647c32b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibWeb/HTML/EventHandler.h>
#include <LibWeb/XHR/EventNames.h>
#include <LibWeb/XHR/XMLHttpRequestEventTarget.h>

namespace Web::XHR {

#undef __ENUMERATE
#define __ENUMERATE(attribute_name, event_name)                                       \
    void XMLHttpRequestEventTarget::set_##attribute_name(WebIDL::CallbackType* value) \
    {                                                                                 \
        set_event_handler_attribute(event_name, value);                               \
    }                                                                                 \
    WebIDL::CallbackType* XMLHttpRequestEventTarget::attribute_name()                 \
    {                                                                                 \
        return event_handler_attribute(event_name);                                   \
    }
ENUMERATE_XML_HTTP_REQUEST_EVENT_TARGET_EVENT_HANDLERS(__ENUMERATE)
#undef __ENUMERATE

}