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

LibWeb: Add Element.id property to the bindings

This commit is contained in:
Andreas Kling 2020-03-29 22:29:05 +02:00
parent 0f7bcd4111
commit c1c56b1131
2 changed files with 17 additions and 0 deletions

View file

@ -44,6 +44,9 @@ private:
static JS::Value inner_html_getter(JS::Interpreter&);
static void inner_html_setter(JS::Interpreter&, JS::Value);
static JS::Value id_getter(JS::Interpreter&);
static void id_setter(JS::Interpreter&, JS::Value);
};
}