mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:37:35 +00:00
LibWeb: Port DOMEventListener to new FlyString
This commit is contained in:
parent
2091a11488
commit
fdd33d818c
3 changed files with 7 additions and 7 deletions
|
@ -63,7 +63,7 @@ bool EventDispatcher::inner_invoke(Event& event, Vector<JS::Handle<DOM::DOMEvent
|
|||
continue;
|
||||
|
||||
// 1. If event’s type attribute value is not listener’s type, then continue.
|
||||
if (event.type().to_deprecated_fly_string() != listener->type)
|
||||
if (event.type() != listener->type)
|
||||
continue;
|
||||
|
||||
// 2. Set found to true.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue