1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:07:35 +00:00

LibWeb: Remove duplicated event handler attribute code in WebSocket

This functionality is now inherited from EventTarget, so we can simply
remove the whole thing in WebSocket. :^)
This commit is contained in:
Andreas Kling 2021-09-19 13:44:58 +02:00
parent 51b33b5678
commit 57f3535c4a
2 changed files with 1 additions and 44 deletions

View file

@ -78,9 +78,6 @@ public:
ENUMERATE_WEBSOCKET_EVENT_HANDLERS(__ENUMERATE)
#undef __ENUMERATE
void set_event_handler_attribute(const FlyString& name, HTML::EventHandler);
HTML::EventHandler get_event_handler_attribute(const FlyString& name);
ReadyState ready_state() const;
String extensions() const;
String protocol() const;